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