Item constructor
Item({})
Implementation
Item(
{required this.transactionId,
required this.name,
required this.code,
this.price,
this.category,
this.quantity})
: super() {
type = HitCategory.ITEM;
}