Whether the parent PageView is at the last page.
bool get isLastPage { if (_view.childrenDelegate.estimatedChildCount == null) return false; final totalPages = _view.childrenDelegate.estimatedChildCount! - 1; return totalPages == _view.controller.page?.round(); }