setBoolAsync function
add a Bool in SharedPref
Implementation
@Deprecated('Use setValue instead')
Future<bool> setBoolAsync(String key, bool value) async {
return await sharedPreferences.setBool(key, value);
}
add a Bool in SharedPref
@Deprecated('Use setValue instead')
Future<bool> setBoolAsync(String key, bool value) async {
return await sharedPreferences.setBool(key, value);
}