FutureState<T> constructor

FutureState<T>(
  1. Future<T> _future,
  2. ViewModel _viewModel
)

Implementation

FutureState(
  this._future,
  this._viewModel,
) {
  resolve();
}