getBoolData static method

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

Implementation

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