notifyInsertedRange method

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

Notify the AnimatedSliverList 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) {
  _checkAdaptor();
  _adaptor._notifyReplacedRange(from, 0, count, null);
}