data property

T? data

Implementation

T? get data {
  _startedFuture();
  return status == FutureStatus.fulfilled ? _result.value : null;
}