LoadingFutureBuilder<T> constructor

const LoadingFutureBuilder<T>({
  1. Key? key,
  2. required Future<T>? future,
  3. required ValueWidgetBuilder<T> builder,
  4. Widget? child,
  5. LoadingStatusStyle? style,
  6. T? initialData,
  7. ValueWidgetBuilder<LoadingStatusStyle>? failBuilder,
  8. ValueWidgetBuilder<LoadingStatusStyle>? noDataBuilder,
  9. ValueWidgetBuilder<LoadingStatusStyle>? loadingBuilder,
})

Implementation

const LoadingFutureBuilder({
  super.key,
  required this.future,
  required this.builder,
  this.child,
  this.style,
  this.initialData,
  this.failBuilder,
  this.noDataBuilder,
  this.loadingBuilder,
});