CreateStr constructor

CreateStr(
  1. String name, {
  2. bool isNullable = false,
  3. bool isPrimary = false,
  4. int length = 20,
  5. Foreign? foreignKey,
  6. String? uniqueGroup,
})

Implementation

CreateStr(this.name,
    {this.isNullable = false,
    this.isPrimary = false,
    this.length = 20,
    this.foreignKey,
    this.uniqueGroup});