notifyListReorder method

void notifyListReorder(
  1. int fromIndex,
  2. int toIndex
)

Notifies about list reorder

Implementation

void notifyListReorder(int fromIndex, int toIndex) {
  if (_isDisposed) return;
  _callbacks?.onListReorder?.call(fromIndex, toIndex);
}