PostgresqlSchema constructor

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