toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final administrativeArea = this.administrativeArea;
  final boundingBox = this.boundingBox;
  final center = this.center;
  final imageryDate = this.imageryDate;
  final imageryProcessedDate = this.imageryProcessedDate;
  final imageryQuality = this.imageryQuality;
  final name = this.name;
  final postalCode = this.postalCode;
  final regionCode = this.regionCode;
  final solarPotential = this.solarPotential;
  final statisticalArea = this.statisticalArea;
  return {
    'administrativeArea': ?administrativeArea,
    'boundingBox': ?boundingBox,
    'center': ?center,
    'imageryDate': ?imageryDate,
    'imageryProcessedDate': ?imageryProcessedDate,
    'imageryQuality': ?imageryQuality,
    'name': ?name,
    'postalCode': ?postalCode,
    'regionCode': ?regionCode,
    'solarPotential': ?solarPotential,
    'statisticalArea': ?statisticalArea,
  };
}