port property
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;
}
deno-postgres@v0.17.0/ClientOptions/port.
Either this or portString is null.
int? get port {
final prop = getProperty(this, 'port');
return prop is int ? prop : null;
}