BillItem constructor
Constructs a BillItem with the provided itemId
.
Optionally, you can provide a description
, quantity
, and price
.
Implementation
BillItem({
required this.itemId,
this.description,
this.quantity,
this.price,
});
Constructs a BillItem with the provided itemId
.
Optionally, you can provide a description
, quantity
, and price
.
BillItem({
required this.itemId,
this.description,
this.quantity,
this.price,
});