HLPickerItem.fromMap constructor
HLPickerItem.fromMap(
- Map json
Implementation
factory HLPickerItem.fromMap(Map<dynamic, dynamic> json) => HLPickerItem(
path: Uri.decodeFull(json['path']),
id: json['id'],
name: json['name'],
mimeType: json['mimeType'],
size: json['size'],
width: json['width'],
height: json['height'],
duration: json['duration'],
thumbnail: json['thumbnail'],
type: json['type'],
);