JobSinglePathPickerActionable constructor

const JobSinglePathPickerActionable({
  1. Key? key,
  2. String? filePickerDialogTitle,
  3. required void onChanged(
    1. String str
    ),
  4. required List<String> allowedExtensions,
  5. required Future<String?> validator(
    1. String? str
    ),
  6. required String canonicalLabel,
  7. String hintLabel = ".../users/downloads/...",
  8. required String filePickerLabel,
})

Implementation

const JobSinglePathPickerActionable({
  super.key,
  this.filePickerDialogTitle,
  required this.onChanged,
  required this.allowedExtensions,
  required this.validator,
  required this.canonicalLabel,
  this.hintLabel = ".../users/downloads/...",
  required this.filePickerLabel,
});