deleteCollection method

void deleteCollection(
  1. String collectionName
)

Implementation

void deleteCollection(String collectionName) async {
  _collections.remove(collectionName);
  await _harnFile.delete(collectionName);
}