Store constructor
Store({
- required int? storeId,
- required String? storeSlug,
- required String? storeName,
- required String? storeLogo,
- required String? storeMobileLogo,
- required int? forcedMobileLogo,
- required String? storeDesc,
- required String? storeMail,
- required int? storeActive,
- required int? storeFeatured,
- required int? storeMobile,
- required String? storeWebsite,
- required String? storeFacebook,
- required String? storeInstagram,
- required int? durationUntilAlertAgain,
- required int? showIgnore,
- required int? showLater,
- 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,
});