toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final availabilityLastUpdateTime = this.availabilityLastUpdateTime;
final availableCount = this.availableCount;
final count = this.count;
final maxChargeRateKw = this.maxChargeRateKw;
final outOfServiceCount = this.outOfServiceCount;
final type = this.type;
return {
'availabilityLastUpdateTime': ?availabilityLastUpdateTime,
'availableCount': ?availableCount,
'count': ?count,
'maxChargeRateKw': ?maxChargeRateKw,
'outOfServiceCount': ?outOfServiceCount,
'type': ?type,
};
}