LineItems constructor

LineItems(
  1. {int? productId,
  2. String? name,
  3. int? variationId,
  4. String? taxClass,
  5. String? subtotal,
  6. String? total,
  7. int? quantity}
)

Implementation

LineItems(
    {this.productId,
    this.name,
    this.variationId,
    this.taxClass,
    this.subtotal,
    this.total,
    this.quantity});