fromMap static method
Implementation
static UIImage? fromMap(Map<String, dynamic>? map) {
if (map == null) {
return null;
}
final instance = UIImage(
data: map['data'] != null
? Uint8List.fromList(map['data'].cast<int>())
: null,
name: map['name'],
systemName: map['systemName'],
);
return instance;
}