Field constructor

Field(
  1. String? name, {
  2. String? catalog,
  3. String? db,
  4. String? table,
  5. String? orgTable,
  6. String? orgName,
  7. int? characterSet,
  8. int? length,
  9. int? type,
  10. int? flags,
  11. int? decimals,
  12. int? defaultValue,
})

Implementation

Field(this.name,
    {this.catalog,
    this.db,
    this.table,
    this.orgTable,
    this.orgName,
    this.characterSet,
    this.length,
    this.type,
    this.flags,
    this.decimals,
    this.defaultValue});