setBool static method

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

Implementation

static Future<bool> setBool(String key, bool value) async {
  SharedPreferences sharedPreferences = await SharedPreferences.getInstance();
  return await sharedPreferences.setBool(key, value);
}