aggregate static method
dynamic
aggregate({})
Implementation
static aggregate(
{required String collectionName,
required String databaseName,
required List<String> pipeline}) async {
return await FlutterMongoStitchPlatform.instance.aggregate(
collectionName: collectionName,
databaseName: databaseName,
pipeline: pipeline,
);
}