count method

Count count([
  1. dynamic filter
])

Implementation

Count count([filter]) {
  if (filter == null) return Count(this);
  return Count(this, _funcWrap(filter, 1));
}