getBoolPref function

Future<bool?> getBoolPref(
  1. String key
)

Implementation

Future<bool?> getBoolPref(String key) async {
  SharedPreferences prefs = await SharedPreferences.getInstance();
  bool? value = prefs.getBool(key);
  return value;
}