MFInvoiceItem constructor

MFInvoiceItem({
  1. String? itemName,
  2. int? quantity,
  3. num? unitPrice,
  4. int? weight,
  5. int? width,
  6. int? height,
  7. int? depth,
})

Implementation

MFInvoiceItem(
    {this.itemName,
    this.quantity,
    this.unitPrice,
    this.weight,
    this.width,
    this.height,
    this.depth});