OrderOverviewEntity constructor

OrderOverviewEntity({
  1. required String? appId,
  2. String? description,
  3. String? shopId,
  4. BackgroundEntity? itemImageBackground,
  5. BackgroundEntity? itemDetailBackground,
  6. StorageConditionsEntity? conditions,
})

Implementation

OrderOverviewEntity({
  required this.appId,
  this.description,
  this.shopId,
  this.itemImageBackground,
  this.itemDetailBackground,
  this.conditions,
});