toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final paymentsAccountId = this.paymentsAccountId;
final paymentsAccountName = this.paymentsAccountName;
final paymentsProfileId = this.paymentsProfileId;
final paymentsProfileName = this.paymentsProfileName;
final secondaryPaymentsProfileId = this.secondaryPaymentsProfileId;
return {
'paymentsAccountId': ?paymentsAccountId,
'paymentsAccountName': ?paymentsAccountName,
'paymentsProfileId': ?paymentsProfileId,
'paymentsProfileName': ?paymentsProfileName,
'secondaryPaymentsProfileId': ?secondaryPaymentsProfileId,
};
}