animateTo method
Implementation
Future<bool> animateTo(int section, int row) {
topIndex = IndexPath(section: section, row: row);
animate = true;
dirty = true;
notifyListeners();
return Future.delayed(Duration(milliseconds: 251), () => true);
}