PickerResult constructor

const PickerResult({
  1. required String filePath,
  2. required String fileName,
  3. required int fileSize,
  4. required String extension,
})

Implementation

const PickerResult({
  required this.filePath,
  required this.fileName,
  required this.fileSize,
  required this.extension,
});