ImageProfile.fromJson constructor
Implementation
factory ImageProfile.fromJson(Map<String, dynamic> json) => ImageProfile(
bitmapMemoryConsumption: json.containsKey("bitmapMemoryConsumption")
? (json["bitmapMemoryConsumption"] as int)
: 0,
hibernationMemoryConsumption:
json.containsKey("hibernationMemoryConsumption")
? (json["hibernationMemoryConsumption"] as int)
: 0,
);