toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final panelsCount = this.panelsCount;
final roofSegmentSummaries = this.roofSegmentSummaries;
final yearlyEnergyDcKwh = this.yearlyEnergyDcKwh;
return {
'panelsCount': ?panelsCount,
'roofSegmentSummaries': ?roofSegmentSummaries,
'yearlyEnergyDcKwh': ?yearlyEnergyDcKwh,
};
}