SchemaTable constructor
SchemaTable(
- String name, {
- Set<
SchemaColumn> ? columns, - Set<
SchemaIndex> ? indices,
Implementation
SchemaTable(
this.name, {
Set<SchemaColumn>? columns,
Set<SchemaIndex>? indices,
}) : columns = columns ?? <SchemaColumn>{},
indices = indices ?? <SchemaIndex>{};