FileField constructor

const FileField({
  1. Key? key,
  2. FileValue? initialValue,
  3. FormFieldValidator<String>? validator,
  4. required String labelText,
  5. required dynamic onChanged(
    1. FileValue
    ),
})

Implementation

const FileField({
  super.key,
  this.initialValue,
  this.validator,
  required this.labelText,
  required this.onChanged,
});