toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final center = this.center;
  final orientation = this.orientation;
  final segmentIndex = this.segmentIndex;
  final yearlyEnergyDcKwh = this.yearlyEnergyDcKwh;
  return {
    'center': ?center,
    'orientation': ?orientation,
    'segmentIndex': ?segmentIndex,
    'yearlyEnergyDcKwh': ?yearlyEnergyDcKwh,
  };
}