toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final json = <String, dynamic>{};
    json[r'fixed_height'] = this.fixedHeight;
    json[r'fixed_height_downsampled'] = this.fixedHeightDownsampled;
    json[r'fixed_height_still'] = this.fixedHeightStill;
    json[r'fixed_width'] = this.fixedWidth;
    json[r'fixed_width_downsampled'] = this.fixedWidthDownsampled;
    json[r'fixed_width_still'] = this.fixedWidthStill;
    json[r'original'] = this.original;
  return json;
}