toJson method
Implementation
Map<String, dynamic> toJson() {
return {
'payment_description': paymentDescription,
'regular_billing': regularBilling.toJson(),
'management_url': managementURL,
'trial_billing': trialBilling?.toJson(),
'billing_agreement': billingAgreement,
'token_notification_url': tokenNotificationURL,
};
}