Table constructor

const Table({
  1. String? name,
  2. List<Symbol>? uniquePropertySet,
})

Default constructor.

If name is provided, the name of the underlying table will be its value. Otherwise, the name of the underlying table matches the name of the table definition class.

See also Table.unique for the behavior of uniquePropertySet.

Implementation

const Table({this.name, this.uniquePropertySet});