setBool static method

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

Sets a boolean value in SharedPreferences.

Implementation

static Future<bool> setBool(String key, bool value) {
  return prefs!.setBool(key, value);
}