saveBool static method
Save a boolean instance to the shared preferences
Implementation
static Future<void> saveBool(bool data, String key) async {
final SharedPreferences prefs = await SharedPreferences.getInstance();
await prefs.setBool(key, data);
}