toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (azimuthDegrees != null) 'azimuthDegrees': azimuthDegrees!,
  if (boundingBox != null) 'boundingBox': boundingBox!,
  if (center != null) 'center': center!,
  if (pitchDegrees != null) 'pitchDegrees': pitchDegrees!,
  if (planeHeightAtCenterMeters != null)
    'planeHeightAtCenterMeters': planeHeightAtCenterMeters!,
  if (stats != null) 'stats': stats!,
};