FastThemeBlocState constructor
FastThemeBlocState({
- bool isInitialized = false,
- bool isInitializing = false,
- ThemeMode themeMode = ThemeMode.system,
- Brightness? brightness,
Constructs a FastThemeBlocState
.
isInitialized
and isInitializing
are inherited from BlocState
and
represent the initialization status of the state.
themeMode
defaults to ThemeMode.system
if not provided.
brightness
is optional and can be null.
Implementation
FastThemeBlocState({
super.isInitialized,
super.isInitializing,
this.themeMode = ThemeMode.system,
this.brightness,
});