SelectedIndexPathsChangeCallback typedef
SelectedIndexPathsChangeCallback =
dynamic Function(List<int> changedIndexPaths, bool selected, int currentSelectedCount)
When you tap cell under edit mode, or call the method below,this callback func will be called once: SwipeActionController.selectCellAt SwipeActionController.deselectCellAt SwipeActionController.selectAll SwipeActionController.deselectAll SwipeActionController.stopEditingMode
Implementation
typedef SelectedIndexPathsChangeCallback = Function(
List<int> changedIndexPaths, bool selected, int currentSelectedCount);