PostgresqlRdbms constructor

PostgresqlRdbms({
  1. Iterable<PostgresqlSchema>? postgresqlSchemas,
})

Implementation

factory PostgresqlRdbms({
  $core.Iterable<PostgresqlSchema>? postgresqlSchemas,
}) {
  final $result = create();
  if (postgresqlSchemas != null) {
    $result.postgresqlSchemas.addAll(postgresqlSchemas);
  }
  return $result;
}