reload method
Reloads Shared Preference
Implementation
Future<void> reload() async {
SharedPreferences prefs = await _getSharedPreferences();
prefs.reload();
}
Reloads Shared Preference
Future<void> reload() async {
SharedPreferences prefs = await _getSharedPreferences();
prefs.reload();
}