notifyStopReorder method

void notifyStopReorder(
  1. bool cancel
)

Notifies the AnimatedListView that the reorder has finished or cancelled (cancel set to true).

Use this method only if you have decided not to use the AnimatedSliverChildBuilderDelegate.addLongPressReorderable attribute or the LongPressReorderable widget (for example if you want to reorder using your custom drag handles).

Implementation

void notifyStopReorder(bool cancel) {
  assert(_debugAssertBinded());
  _interface!.notifyStopReorder(cancel);
}