toJson method

Map<String, dynamic> toJson()

Implementation

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