BaseScrollControllerWidget<T> constructor

const BaseScrollControllerWidget<T>({
  1. Key? key,
  2. required ListBuilder<T> listBuilder,
  3. ScrollController? scrollController,
  4. bool isControlDefaultDialVisibility = false,
  5. Function? scrollControllerInit,
  6. ValueChanged<bool>? onScroll,
  7. bool shouldDispose = false,
})

Implementation

const BaseScrollControllerWidget({
  super.key,
  required this.listBuilder,
  this.scrollController,
  this.isControlDefaultDialVisibility = false,
  this.scrollControllerInit,
  this.onScroll,
  this.shouldDispose = false,
});