PostgresqlSchema constructor
PostgresqlSchema({
- String? schema,
- Iterable<
PostgresqlTable> ? postgresqlTables,
Implementation
factory PostgresqlSchema({
$core.String? schema,
$core.Iterable<PostgresqlTable>? postgresqlTables,
}) {
final $result = create();
if (schema != null) {
$result.schema = schema;
}
if (postgresqlTables != null) {
$result.postgresqlTables.addAll(postgresqlTables);
}
return $result;
}