aggregateCount method

Map<dynamic, int> aggregateCount(
  1. String fieldName
)

Implementation

Map<dynamic, int> aggregateCount(String fieldName) {
  final response = _harnCollection.aggregateCount(fieldName);
  harnLog.register({"aggregateCount": response});
  return response;
}