getObject method
获取存储 注意:返回的是一个Future对象 要么用await接收 要么在.then中接收
Implementation
Future<dynamic> getObject(String key) async {
await _initialize();
dynamic value = _storage?.get(key);
if (_isJson(value)) {
return const JsonDecoder().convert(value);
} else {
return value;
}
}