getCollectionByNameInternal method

  1. @override
IsarCollection? getCollectionByNameInternal(
  1. String name
)

@nodoc

Implementation

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