getState<T> method

RxState<T> getState<T>(
  1. String key
)

Truy cập state

Implementation

RxState<T> getState<T>(String key) {
  final state = _localStates[key] as RxState<T>?;
  if (state == null) {
    throw Exception("Không tìm thấy state với key '$key'.");
  }
  return state;
}