get<TValue> method
Shorthand for using "as" to cast the dynamic value
Implementation
LoFieldState<TKey, TValue> get<TValue>(TKey key) {
return this[key]! as LoFieldState<TKey, TValue>;
}
Shorthand for using "as" to cast the dynamic value
LoFieldState<TKey, TValue> get<TValue>(TKey key) {
return this[key]! as LoFieldState<TKey, TValue>;
}