toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final account = this.account;
final accountId = this.accountId;
final batchId = this.batchId;
final force = this.force;
final labelIds = this.labelIds;
final linkRequest = this.linkRequest;
final merchantId = this.merchantId;
final method = this.method;
final overwrite = this.overwrite;
final view = this.view;
return {
'account': ?account,
'accountId': ?accountId,
'batchId': ?batchId,
'force': ?force,
'labelIds': ?labelIds,
'linkRequest': ?linkRequest,
'merchantId': ?merchantId,
'method': ?method,
'overwrite': ?overwrite,
'view': ?view,
};
}