getCollectionByNameInternal method
@nodoc
Implementation
@override
IsarCollection<dynamic>? getCollectionByNameInternal(String name) {
final collection = _isar.getCollectionByNameInternal(name);
if (collection != null) {
return SentryIsarCollection(collection, _hub, name);
} else {
return null;
}
}