ResultImageInfo.fromJson constructor

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

Creates a ResultImageInfo instance from a JSON representation.

Implementation

ResultImageInfo.fromJson(Map<String, dynamic> json) {
  fileSize = json['fileSize'];
  imageWidth = json['imageWidth'];
  imageHeight = json['imageHeight'];
}