ExpandedProductParsedResult constructor

ExpandedProductParsedResult(
  1. String? rawText,
  2. String? productID,
  3. String? sscc,
  4. String? lotNumber,
  5. String? productionDate,
  6. String? packagingDate,
  7. String? bestBeforeDate,
  8. String? expirationDate,
  9. String? weight,
  10. String? weightType,
  11. String? weightIncrement,
  12. String? price,
  13. String? priceIncrement,
  14. String? priceCurrency,
  15. Map<String, String> uncommonAIs,
)

Implementation

ExpandedProductParsedResult(
  this.rawText,
  this.productID,
  this.sscc,
  this.lotNumber,
  this.productionDate,
  this.packagingDate,
  this.bestBeforeDate,
  this.expirationDate,
  this.weight,
  this.weightType,
  this.weightIncrement,
  this.price,
  this.priceIncrement,
  this.priceCurrency,
  this.uncommonAIs,
) : super(ParsedResultType.product);