toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final json = <String, dynamic>{};
    json[r'frames'] = this.frames;
    json[r'height'] = this.height;
    json[r'size'] = this.size;
    json[r'url'] = this.url;
    json[r'width'] = this.width;
  return json;
}