putBool static method

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

put bool.

Implementation

static Future<bool>? putBool(String key, bool value) {
  return _prefs?.setBool(key, value);
}