BoughtEntry constructor

BoughtEntry({
  1. required Iterable<ItemBought> itemBought,
  2. required int sellerID,
})

Implementation

BoughtEntry({
  required this.itemBought,
  required this.sellerID,
}) : super(entryType: EntryType.buy);