getCollection method

MongoCollection getCollection(
  1. String collectionName
)

Implementation

MongoCollection getCollection(String collectionName) {
  return MongoCollection(
    databaseName: this.name,
    collectionName: collectionName,
  );
}