FieldDescribe constructor

FieldDescribe({
  1. String name = "",
  2. String type = "",
  3. bool primary = false,
  4. bool unique = false,
  5. bool autoincrement = false,
  6. int length = 0,
})

Implementation

FieldDescribe(
    {this.name = "",
    this.type = "",
    this.primary = false,
    this.unique = false,
    this.autoincrement = false,
    this.length = 0});