toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final feedCountryCode = this.feedCountryCode;
  final feedLanguageCode = this.feedLanguageCode;
  final items = this.items;
  final localTransactionCost = this.localTransactionCost;
  final merchantId = this.merchantId;
  return {
    'feedCountryCode': ?feedCountryCode,
    'feedLanguageCode': ?feedLanguageCode,
    'items': ?items,
    'localTransactionCost': ?localTransactionCost,
    'merchantId': ?merchantId,
  };
}