getBoolValues method

Future<bool> getBoolValues(
  1. String key
)

Implementation

Future<bool> getBoolValues(String key) async {
  var prefs = await SharedPreferences.getInstance();
  var boolValue = prefs.getBool(key) ?? false;
  return boolValue;
}