SlidableController constructor

SlidableController({
  1. ValueChanged<Animation<double>?>? onSlideAnimationChanged,
  2. ValueChanged<bool?>? onSlideIsOpenChanged,
})

Creates a controller that keep tracks of the active SlidableState and close the previous one.

Implementation

SlidableController({
  this.onSlideAnimationChanged,
  this.onSlideIsOpenChanged,
});