close method

Future<void> close()

Closes this database and releases associated resources.

Implementation

Future<void> close() async {
  await streamQueries.close();
  await executor.close();
}