get<T> method

T? get<T>(
  1. String id
)

Implementation

T? get<T>(String id) {
  return _store!.get(id)?.value as T?;
}