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