toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final countryCode = this.countryCode;
  final itemId = this.itemId;
  final languageCode = this.languageCode;
  final merchantId = this.merchantId;
  final quantity = this.quantity;
  return {
    'countryCode': ?countryCode,
    'itemId': ?itemId,
    'languageCode': ?languageCode,
    'merchantId': ?merchantId,
    'quantity': ?quantity,
  };
}