connection property
deno-postgres@v0.17.0/ClientOptions/connection.
Implementation
PartialConnectionOptions? get connection {
final map =
dartify(getProperty(this, 'connection')) as Map<dynamic, dynamic>?;
return map == null ? null : PartialConnectionOptions.fromMap(map);
}