FileField constructor

const FileField({
  1. Key? key,
  2. required double height,
  3. required double width,
  4. required String label,
  5. required TextEditingController controller,
  6. required List<String> allowedExtensions,
  7. required bool allowMultiple,
})

Implementation

const FileField({
  super.key,
  required this.height,
  required this.width,
  required this.label,
  required this.controller,
  required this.allowedExtensions,
  required this.allowMultiple,
});