isLast property

  1. @override
bool isLast
override

true if this page is the last page. false otherwise.

Implementation

@override
bool get isLast {
  var paging = _paging as Paging<T>;
  return (paging.offset ?? 0) + paging.limit >= paging.total;
}