setBool static method

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

Implementation

static Future setBool(String key, bool v) async {
  SharedPreferences prefs = await SharedPreferences.getInstance();
  await prefs.setBool(key, v);

}