toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (annualFluxUrl != null) 'annualFluxUrl': annualFluxUrl!,
  if (dsmUrl != null) 'dsmUrl': dsmUrl!,
  if (hourlyShadeUrls != null) 'hourlyShadeUrls': hourlyShadeUrls!,
  if (imageryDate != null) 'imageryDate': imageryDate!,
  if (imageryProcessedDate != null)
    'imageryProcessedDate': imageryProcessedDate!,
  if (imageryQuality != null) 'imageryQuality': imageryQuality!,
  if (maskUrl != null) 'maskUrl': maskUrl!,
  if (monthlyFluxUrl != null) 'monthlyFluxUrl': monthlyFluxUrl!,
  if (rgbUrl != null) 'rgbUrl': rgbUrl!,
};