Shops constructor

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

Создает экземпляр данных Маркетплейса

Implementation

Shops({
  required this.shopCode,
  required this.amount,
  this.name,
  this.fee,
});