toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final linkedAccount = this.linkedAccount;
final loginAccount = this.loginAccount;
final operatingAccount = this.operatingAccount;
final productDestinationId = this.productDestinationId;
final reference = this.reference;
return {
'linkedAccount': ?linkedAccount,
'loginAccount': ?loginAccount,
'operatingAccount': ?operatingAccount,
'productDestinationId': ?productDestinationId,
'reference': ?reference,
};
}