get<V> method

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

Gets key value.

Note, this State should be already loaded isLoaded.

Implementation

V? get<V>(String key) {
  return _castTo<V>(_properties[key]);
}