get<T> method
Null safety
- String key
Get the value for a key from storage namespace
Implementation
Future<T?> get<T>(String key) async {
await ready;
return box.read(key);
}
Get the value for a key from storage namespace
Future<T?> get<T>(String key) async {
await ready;
return box.read(key);
}