changeAppTheme static method

void changeAppTheme({
  1. required ThemeType themeType,
})

Change the app's theme dynamically (light/dark)

Implementation

static void changeAppTheme({
  required ThemeType themeType,
}) {
  cT = themeType == ThemeType.dark ? _defaultDarkTheme : _defaultLightTheme;
}