toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final currentAmountMicros = this.currentAmountMicros;
final newStartDate = this.newStartDate;
final recommendedNewAmountMicros = this.recommendedNewAmountMicros;
return {
'currentAmountMicros': ?currentAmountMicros,
'newStartDate': ?newStartDate,
'recommendedNewAmountMicros': ?recommendedNewAmountMicros,
};
}