LazyLoadBuilder constructor

const LazyLoadBuilder({
  1. Key? key,
  2. Future<LazyLoadStatus?> onLoad()?,
  3. required LazyLoadWidgetBuilder builder,
  4. required ScrollController controller,
  5. double startLoadBeforeOffset = -80,
  6. ValueNotifier<LazyLoadStatus>? status,
})

Implementation

const LazyLoadBuilder({
  Key? key,
  this.onLoad,
  required this.builder,
  required this.controller,
  this.startLoadBeforeOffset = -80,
  this.status,
}) : super(key: key);