getValue<T> method
- String key
Reads a value of T type from persistent storage for the given key
.
Implementation
T getValue<T>(String key) => appConfig[key] as T;
Reads a value of T type from persistent storage for the given key
.
T getValue<T>(String key) => appConfig[key] as T;