setTotalCount method

  1. @override
void setTotalCount(
  1. int total
)
override

Implementation

@override
void setTotalCount(int total) {
  if (_totalCount != total) {
    _totalCount = total;
    notifyListeners();
  }
}