Collection constructor
Collection({})
Implementation
Collection({
required String name,
required String path,
required bool encrypted,
required bool isWeb,
Database? database,
}) : _name = name,
_collectionOperations = CollectionOperations(path: path, encrypted: encrypted)..createSync(),
_database = database;