toJson method

Map<String, dynamic> toJson()

Returns a JSON representation of ResultImageInfo.

Implementation

Map<String, dynamic> toJson() {
  return {
    'FileSize': fileSize,
    'ImageWidth': imageWidth,
    'ImageHeight': imageHeight
  };
}