FieldBlueprint constructor

FieldBlueprint(
  1. String table,
  2. String name,
  3. String type, {
  4. String? constraint,
  5. bool isAutoIncrement = false,
  6. bool isNullable = false,
  7. bool isUnique = false,
  8. dynamic defaultValue,
  9. bool isPrimaryKey = false,
  10. String? fieldComment,
})

Implementation

FieldBlueprint(
  this.table,
  this.name,
  this.type, {
  this.constraint,
  this.isAutoIncrement = false,
  this.isNullable = false,
  this.isUnique = false,
  this.defaultValue,
  this.isPrimaryKey = false,
  this.fieldComment,
});