transport property

Transport? transport

deno-postgres@v0.17.0/Session/transport

Implementation

Transport? get transport {
  final string = getProperty<String?>(this, 'transport');

  return string == null ? null : Transport.parse(string);
}