toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final enableRenewal = this.enableRenewal;
final paymentCycle = this.paymentCycle;
final paymentPlan = this.paymentPlan;
final resizeUnitCount = this.resizeUnitCount;
return {
'enableRenewal': ?enableRenewal,
'paymentCycle': ?paymentCycle,
'paymentPlan': ?paymentPlan,
'resizeUnitCount': ?resizeUnitCount,
};
}