isUsingSystemTheme method

Future<bool> isUsingSystemTheme()

Implementation

Future<bool> isUsingSystemTheme() async {
  final prefs = await SharedPreferences.getInstance();
  return prefs.getBool(isSystemThemeKey) ?? false;
}