EndFadeableList constructor

const EndFadeableList({
  1. Key? key,
  2. required ScrollController scrollController,
  3. required Widget child,
  4. double? maxShadeSizeFraction,
  5. double? shadeFadeScrollPosition,
  6. Axis scrollDirection = Axis.vertical,
})

Implementation

const EndFadeableList({
  super.key,
  required this.scrollController,
  required this.child,
  this.maxShadeSizeFraction,
  this.shadeFadeScrollPosition,
  this.scrollDirection = Axis.vertical,
});