toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final Map<String, dynamic> data = new Map<String, dynamic>();
  data["height"] = this.height;
  if (this.htmlAttributions != null) data["html_attributions"] = this.htmlAttributions;
  data["photo_reference"] = this.photoReference;
  data["width"] = this.width;
  return data;
}