RenderSlidable constructor

RenderSlidable({
  1. required SlideController controller,
  2. required Axis axis,
  3. double maxSlideThreshold = 0.5,
  4. List<RenderBox>? children,
})

Implementation

RenderSlidable({
  required SlideController controller,
  required Axis axis,
  double maxSlideThreshold = 0.5,
  List<RenderBox>? children,
})  : _controller = controller,
      _axis = axis,
      _maxSlideThreshold = maxSlideThreshold {
  addAll(children);
}