instance property

Isar? get instance

Get Isar instance Returns null if not initialized - caller must handle this

Implementation

Isar? get instance {
  final currentInstance = Isar.getInstance();
  if (currentInstance != null) {
    _isar = currentInstance;
  }
  return _isar;
}