isSystemMode property

bool get isSystemMode

Implementation

bool get isSystemMode {
  final String? source = _preferences.getString(_themeModeKey);
  if (source == null) return themeMode == ThemeMode.system;
  return parse(source) == ThemeMode.system;
}