reload method

Future<void> reload()

Reloads Shared Preference

Implementation

Future<void> reload() async {
  SharedPreferences prefs = await _getSharedPreferences();
  prefs.reload();
}