FastAppSettingsBlocState constructor
FastAppSettingsBlocState({})
Constructs a FastAppSettingsBlocState with the provided parameters.
Implementation
FastAppSettingsBlocState({
super.isInitializing,
super.isInitialized,
this.secondaryCurrencyCode,
this.countryCode,
this.theme,
bool? use24HourFormat,
String? primaryCurrencyCode,
String? languageCode,
bool? saveEntry,
}) : primaryCurrencyCode =
primaryCurrencyCode ?? kFastAppSettingsPrimaryCurrencyCode,
saveEntry = saveEntry ?? kFastAppSettingsSaveEntry,
languageCode = languageCode ?? kFastSettingsDefaultLanguageCode,
use24HourFormat = use24HourFormat ?? false;