get method Null safety

Future<T?> get()

Get the value from storage

Implementation

Future<T?> get() {
  return storage.get<T>(key);
}