OrderOverviewModel constructor

OrderOverviewModel({
  1. required String documentID,
  2. required String appId,
  3. String? description,
  4. ShopModel? shop,
  5. BackgroundModel? itemImageBackground,
  6. BackgroundModel? itemDetailBackground,
  7. StorageConditionsModel? conditions,
})

Implementation

OrderOverviewModel({
  required this.documentID,
  required this.appId,
  this.description,
  this.shop,
  this.itemImageBackground,
  this.itemDetailBackground,
  this.conditions,
});