closeImpl method
Implementation
@override
void closeImpl() {
final nativeConnection = this.nativeConnection;
if (nativeConnection is PostgreSQLConnection) {
try {
// ignore: discarded_futures
nativeConnection.close();
} catch (_) {}
}
}