PickedFile constructor

PickedFile({
  1. required String name,
  2. required String path,
  3. int? size,
  4. String? extension,
  5. String? fileType,
})

Implementation

PickedFile(
    {required this.name,
    required this.path,
    this.size,
    this.extension,
    this.fileType});