port property

int? port

deno-postgres@v0.17.0/ClientOptions/port.

Either this or portString is null.

Implementation

int? get port {
  final prop = getProperty(this, 'port');

  return prop is int ? prop : null;
}