reload static method

Future<void> reload()

Fetches the latest values from the host platform. Use this method to observe modifications that were made in native code (without using the plugin) while the app is running.

Implementation

static Future<void> reload() async {
  final prefs = await instance;
  return prefs.reload();
}