HLPickerItem constructor

const HLPickerItem({
  1. required String path,
  2. required String id,
  3. required String name,
  4. required String mimeType,
  5. required int size,
  6. required int width,
  7. required int height,
  8. required String type,
  9. double? duration,
  10. String? thumbnail,
})

Implementation

const HLPickerItem({
  required this.path,
  required this.id,
  required this.name,
  required this.mimeType,
  required this.size,
  required this.width,
  required this.height,
  required this.type,
  this.duration,
  this.thumbnail,
});