setBool static method

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

Implementation

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