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