getStore method
获取缓存
Implementation
Future<dynamic> getStore(String key) async {
if (_store == null) {
_store = await CloudBaseStore().init();
}
if (key == this.loginTypeKey) {
int? index = await _store!.get(key);
return index != null ? CloudBaseAuthType.values[index] : null;
} else {
return _store!.get(key);
}
}