setTheme static method

void setTheme(
  1. bool isDark
)

Implementation

static void setTheme(bool isDark) {
  if (isDark) {
    themeData = ThemeModel(
        colors: ThemeColors.dark(),
        formUiHelper: FormUiHelper()
    );
  } else {
    themeData = ThemeModel(
        colors: ThemeColors.light(),
        formUiHelper: FormUiHelper()
    );
  }
}