LoadingFutureBuilder<T> constructor
const
LoadingFutureBuilder<T> ({
- Key? key,
- required Future<
T> ? future, - required ValueWidgetBuilder<
T> builder, - Widget? child,
- LoadingStatusStyle? style,
- T? initialData,
- ValueWidgetBuilder<
LoadingStatusStyle> ? failBuilder, - ValueWidgetBuilder<
LoadingStatusStyle> ? noDataBuilder, - 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,
});