closeConnection method

  1. @override
Future<void> closeConnection()
override

Closes the active connection to the PostgreSQL database.

Implementation

@override

/// Closes the active connection to the PostgreSQL database.
Future<void> closeConnection() async {
  await _connection.close();
}