AppFilePicker constructor

const AppFilePicker({
  1. Key? key,
  2. required FieldCubit<File> cubit,
  3. required String label,
  4. List<String>? allowedExtensions,
  5. bool allowMultiple = false,
})

Implementation

const AppFilePicker({
  super.key,
  required this.cubit,
  required this.label,
  this.allowedExtensions,
  this.allowMultiple = false,
});