portString property

String? portString

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

Either this or port is null.

Implementation

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

  return prop is String ? prop : null;
}