notifyMovedRange method

void notifyMovedRange(
  1. int from,
  2. int count,
  3. int newIndex
)

Notifies the AnimatedListView that a range starting from from and count long has been moved to a new location, at newIndex position (the new index considers the interval just removed). Call this method after you have updated your list.

Implementation

void notifyMovedRange(
  int from,
  int count,
  int newIndex,
) {
  assert(_debugAssertBinded());
  _interface!.notifyMovedRange(from, count, newIndex);
}