MoveIndexControllerEvent constructor

MoveIndexControllerEvent({
  1. required int newIndex,
  2. required int oldIndex,
  3. required bool animation,
})

Implementation

MoveIndexControllerEvent({
  required this.newIndex,
  required this.oldIndex,
  required bool animation,
}) : super(
        animation: animation,
      );