collection method
Implementation
HarnCollection collection(String collectionName) {
if (_collections[collectionName] == null) {
_collections[collectionName] =
HarnCollection(collectionName, _initialData[collectionName] ?? {});
_loadCollection(collectionName);
}
return _collections[collectionName]!;
}