onDropList method
Implementation
void onDropList(int? listIndex) {
if(widget.onDropList != null){
widget.onDropList!(listIndex,widget.boardView!.startListIndex);
}
widget.boardView!.draggedListIndex = null;
if(widget.boardView!.mounted) {
widget.boardView!.setState(() {
});
}
}