toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final height = this.height;
  final kind = this.kind;
  final mimeType = this.mimeType;
  final url = this.url;
  final width = this.width;
  return {
    'height': ?height,
    'kind': ?kind,
    'mime_type': ?mimeType,
    'url': ?url,
    'width': ?width,
  };
}