toJson method
Implementation
Map<String, dynamic> toJson() {
final capacityProvider = this.capacityProvider;
final base = this.base;
final weight = this.weight;
return {
'capacityProvider': capacityProvider,
if (base != null) 'base': base,
if (weight != null) 'weight': weight,
};
}