close method

Future<void> close()

Close Database

Implementation

Future<void> close() async {
  if (!isOpened) return;
  await _indexDB.close();
}