toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final additionalItemParameters = this.additionalItemParameters;
  final conversionValue = this.conversionValue;
  final customVariables = this.customVariables;
  final itemId = this.itemId;
  final merchantFeedLabel = this.merchantFeedLabel;
  final merchantFeedLanguageCode = this.merchantFeedLanguageCode;
  final merchantId = this.merchantId;
  final merchantProductId = this.merchantProductId;
  final quantity = this.quantity;
  final unitPrice = this.unitPrice;
  return {
    'additionalItemParameters': ?additionalItemParameters,
    'conversionValue': ?conversionValue,
    'customVariables': ?customVariables,
    'itemId': ?itemId,
    'merchantFeedLabel': ?merchantFeedLabel,
    'merchantFeedLanguageCode': ?merchantFeedLanguageCode,
    'merchantId': ?merchantId,
    'merchantProductId': ?merchantProductId,
    'quantity': ?quantity,
    'unitPrice': ?unitPrice,
  };
}