Store constructor

Store({
  1. required int? storeId,
  2. required String? storeSlug,
  3. required String? storeName,
  4. required String? storeDesc,
  5. required String? storeMail,
  6. required int? storeActive,
  7. required int? storeFeatured,
  8. required int? storeMobile,
  9. required String? storeWebsite,
  10. required String? storeFacebook,
  11. required String? storeInstagram,
  12. required int? durationUntilAlertAgain,
  13. required int? showIgnore,
  14. required int? showLater,
  15. required int? barrierDismissible,
})

Implementation

Store({
  required this.storeId,
  required this.storeSlug,
  required this.storeName,
  required this.storeLogo,
  required this.storeMobileLogo,
  required this.forcedMobileLogo,
  required this.storeDesc,
  required this.storeMail,
  required this.storeActive,
  required this.storeFeatured,
  required this.storeMobile,
  required this.storeWebsite,
  required this.storeFacebook,
  required this.storeInstagram,
  required this.durationUntilAlertAgain,
  required this.showIgnore,
  required this.showLater,
  required this.barrierDismissible,

});