get<T> method

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

Reads key and casts it to T when possible.

Implementation

T? get<T>(String key) => store.get<T>(key);