toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final azimuthDegrees = this.azimuthDegrees;
final boundingBox = this.boundingBox;
final center = this.center;
final pitchDegrees = this.pitchDegrees;
final planeHeightAtCenterMeters = this.planeHeightAtCenterMeters;
final stats = this.stats;
return {
'azimuthDegrees': ?azimuthDegrees,
'boundingBox': ?boundingBox,
'center': ?center,
'pitchDegrees': ?pitchDegrees,
'planeHeightAtCenterMeters': ?planeHeightAtCenterMeters,
'stats': ?stats,
};
}