closeImpl method

  1. @override
void closeImpl()
override

Implementation

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