setBool method

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

Implementation

Future setBool(String name, bool value) async {
  SharedPreferences prefs = await SharedPreferences.getInstance();
  await prefs.setBool(name, value);
  return true;
}