1. @override
Future close()

Closes the underlying database connection.

Source

@override
Future close() async {
  await _databaseConnection?.close();
  _databaseConnection = null;
}