ImageInfo.fromJson constructor

ImageInfo.fromJson(
  1. Map<String, dynamic> json
)

Implementation

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