AsyncStateData<T> constructor

AsyncStateData<T>(
  1. T value, [
  2. T? lastValue
])

Create an AsyncState representing the data state with value.

Implementation

AsyncStateData(this.value, [super.lastValue]);