SelectionAnimationWidget constructor

const SelectionAnimationWidget({
  1. Key? key,
  2. required SelectionListViewController controller,
  3. required Widget view,
  4. int animationMilliseconds = 100,
})

Implementation

const SelectionAnimationWidget({
  Key? key,
  required this.controller,
  required this.view,
  this.animationMilliseconds = 100,
}) : super(key: key);