loadStore<T extends Object> static method
Implementation
static Future<void> loadStore<T extends Object>(List<dynamic> keys) async {
for (var key in keys) {
key = key.toString();
String? storeValue = await storage.read(key: key);
if (storeValue != null) {
T? data = jsonDecode(storeValue) as T?;
set(key, data);
}
}
}