toJson method

Map<String, dynamic> toJson()

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,
  };
}