PostgresqlTable constructor

PostgresqlTable({
  1. String? table,
  2. 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;
}