SingleAsyncWidget<T> constructor

const SingleAsyncWidget<T>({
  1. Key? key,
  2. required SingleActionProcessWidgetBuilder<T> builder,
  3. Widget? child,
  4. void onError(
    1. Object error,
    2. StackTrace stackTrace
    )?,
})

Implementation

const SingleAsyncWidget({
  Key? key,
  required this.builder,
  this.child,
  this.onError,
}) : super(key: key);