toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final brand = this.brand;
  final gtin = this.gtin;
  final lineItemId = this.lineItemId;
  final mpn = this.mpn;
  final productDescription = this.productDescription;
  final productId = this.productId;
  final productTitle = this.productTitle;
  final quantity = this.quantity;
  final sku = this.sku;
  final upc = this.upc;
  return {
    'brand': ?brand,
    'gtin': ?gtin,
    'lineItemId': ?lineItemId,
    'mpn': ?mpn,
    'productDescription': ?productDescription,
    'productId': ?productId,
    'productTitle': ?productTitle,
    'quantity': ?quantity,
    'sku': ?sku,
    'upc': ?upc,
  };
}