Table constructor
Table(})
Implementation
Table(this.name, this.columns,
{List<TableConstraint>? constraints,
this.strict = false,
this.withoutRowid = false})
: constraints = List<TableConstraint>.from(constraints ?? const []),
rows = <List<Object?>>[],
indexDefs = <String, IndexDef>{},
indexes = <String, SplayTreeMap<Object, List<int>>>{},
autoInc = <String, int>{};