fromVal static method

EnumThemeMode fromVal(
  1. int? val
)

从值获取枚举

Implementation

static EnumThemeMode fromVal(int? val) {
  return EnumThemeMode.values.firstWhere((item) => item.val == val, orElse: () => EnumThemeMode.system);
}