LazyLoadScrollView constructor

LazyLoadScrollView({
  1. Key? key,
  2. required Widget child,
  3. required EndOfPageListenerCallback onEndOfPage,
  4. Axis scrollDirection = Axis.vertical,
  5. bool isLoading = false,
  6. int scrollOffset = 100,
})

Implementation

LazyLoadScrollView({
  Key? key,
  required this.child,
  required this.onEndOfPage,
  this.scrollDirection = Axis.vertical,
  this.isLoading = false,
  this.scrollOffset = 100,
}) : super(key: key);