registerStateWithNamespace<T> method
Register state with namespace
Implementation
// ignore: deprecated_member_use_from_same_package
void registerStateWithNamespace<T>(String namespace, String key, Rx<T> state) {
_state['$namespace:$key'] = state;
}