notifyInsertedRange method

void notifyInsertedRange(
  1. int from,
  2. int count
)

Notifies the AnimatedListView that a new range starting from from and count long has been inserted. Call this method after actually you have updated your list.

Implementation

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