putBool method

Future<bool> putBool(
  1. String key,
  2. bool value
)

It puts a bool value inside the localStorage

Implementation

Future<bool> putBool(String key, bool value) async {
  return _prefs.then((SharedPreferences prefs) {
    prefs.setBool(key, value);
    return true;
  });
}