LazyLoadBuilder constructor
const
LazyLoadBuilder({
- Key? key,
- Future<
LazyLoadStatus?> onLoad()?, - required LazyLoadWidgetBuilder builder,
- required ScrollController controller,
- double startLoadBeforeOffset = -80,
- ValueNotifier<
LazyLoadStatus> ? status,
Implementation
const LazyLoadBuilder({
Key? key,
this.onLoad,
required this.builder,
required this.controller,
this.startLoadBeforeOffset = -80,
this.status,
}) : super(key: key);