itemCount property

int itemCount

Implementation

int get itemCount {
  final count = asSuccess.items.length;
  if (hasNextPage || hasError) return count + 1;
  return count;
}