toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final accountId = this.accountId;
final batchId = this.batchId;
final merchantId = this.merchantId;
final method = this.method;
final shippingSettings = this.shippingSettings;
return {
'accountId': ?accountId,
'batchId': ?batchId,
'merchantId': ?merchantId,
'method': ?method,
'shippingSettings': ?shippingSettings,
};
}