close method

Future<void> close()

Closes this database connection and releases all resources associated with it. Implementations should also handle close calls in a state where the database isn't open.

Implementation

Future<void> close() async {
  // no-op per default for backwards compatibility
}