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