ShopEntity constructor

ShopEntity({
  1. required String? appId,
  2. String? description,
  3. String? shortDescription,
  4. String? currency,
  5. StorageConditionsEntity? conditions,
})

Implementation

ShopEntity({
  required this.appId,
  this.description,
  this.shortDescription,
  this.currency,
  this.conditions,
});