updateThemeMode method

void updateThemeMode(
  1. EnumThemeMode? v
)

更新主题

Implementation

void updateThemeMode(EnumThemeMode? v) {
  themeMode = v?.val ?? EnumThemeMode.system.val;
  setSystemConfigCache();
  update(['themeScreen']);
}