asyncState property

ValueCell<AsyncState<(T$1, T$2, T$3, T$4, T$5, T$6)>> get asyncState

A cell that evaluates to the AsyncState of the Future held in this cell.

NOTE: The returned cell must have at least one observer in order to function.

Implementation

ValueCell<AsyncState<(T$1, T$2, T$3, T$4, T$5, T$6)>> get asyncState {
  return ValueCell.computed(
      () => AsyncState.makeState(
            current: awaited,
          ),
      key: _AsyncStateCellKey(this));
}