toJson method

Map<String, dynamic> toJson()

Implementation

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