reload static method

Future<void> reload()

重新加载缓存数据

Implementation

static Future<void> reload() async {
  if (_prefs == null) await getInstance();
  _prefs?.reload();
}