of<T> static method
Implementation
static Dependent<T> of<T>(QueryState<T> state) {
return Dependent<T>(enabled: state.isSuccess, value: state.data);
}
static Dependent<T> of<T>(QueryState<T> state) {
return Dependent<T>(enabled: state.isSuccess, value: state.data);
}