setBool static method

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

Saves a boolean value to persistent storage under the specified app group.

If value is null, this is equivalent to calling remove() on the key.

Implementation

static Future<void> setBool(String key, bool? value) async {
  await _setValue('Bool', key, value);
}