FileFieldWithFile constructor

FileFieldWithFile({
  1. required File file,
  2. String? filename,
  3. MediaType? contentType,
})

Implementation

FileFieldWithFile({
  required this.file,
  String? filename,
  MediaType? contentType,
}) : super._(
        filename: filename,
        contentType: contentType,
      );