Shop constructor

Shop({
  1. required String shopCode,
  2. required String name,
  3. int amount = 0,
  4. String? fee,
})

Implementation

Shop({
  required this.shopCode,
  required this.name,
  this.amount = 0,
  this.fee,
});