toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final merchantAccountId = this.merchantAccountId;
final name = this.name;
final quantity = this.quantity;
final value = this.value;
return {
'merchantAccountId': ?merchantAccountId,
'name': ?name,
'quantity': ?quantity,
'value': ?value,
};
}