AppTheme constructor
The ctor takes in override values for the initial theme type and system settings preference.
Implementation
AppTheme({
this.themeType = ThemeType.LIGHT,
this.useSystem = true,
}) : super() {
loadSettings();
}
The ctor takes in override values for the initial theme type and system settings preference.
AppTheme({
this.themeType = ThemeType.LIGHT,
this.useSystem = true,
}) : super() {
loadSettings();
}