count method

  1. @override
Future<int> count({
  1. String? field,
  2. bool distinct = false,
})
override

Implementation

@override
Future<int> count({String? field, bool distinct = false}) {
  return CountAggregate(this, field).get();
}