get<TValue> method

LoFieldState<TKey, TValue> get<TValue>(
  1. TKey key
)

Shorthand for using "as" to cast the dynamic value

Implementation

LoFieldState<TKey, TValue> get<TValue>(TKey key) {
  return this[key]! as LoFieldState<TKey, TValue>;
}