factory ImageInfo.fromJson(Map<String, dynamic> json) => ImageInfo( height: (json["height"] as int), width: (json["width"] as int), maxByteSize: (json["maxByteSize"] as int), );