close method

Future<void> close()

Close Isar connection

Implementation

Future<void> close() async {
  await _isar?.close();
  _isar = null;
}