SqfEntityFieldBase constructor

SqfEntityFieldBase(
  1. String? fieldName,
  2. DbType? dbType, {
  3. dynamic defaultValue,
  4. dynamic minValue,
  5. dynamic maxValue,
  6. SqfEntityTableBase? table,
  7. SqfEntitySequenceBase? sequencedBy,
  8. bool? isPrimaryKeyField,
  9. int? primaryKeyIndex,
  10. bool? isNotNull,
  11. bool? isUnique,
  12. bool? isIndex,
  13. int? isIndexGroup,
  14. String? checkCondition,
  15. Collate? collate,
  16. String? formLabelText,
})

Implementation

SqfEntityFieldBase(this.fieldName, this.dbType,
    {this.defaultValue,
    this.minValue,
    this.maxValue,
    this.table,
    this.sequencedBy,
    this.isPrimaryKeyField,
    this.primaryKeyIndex,
    this.isNotNull,
    this.isUnique,
    this.isIndex,
    this.isIndexGroup,
    this.checkCondition,
    this.collate,
    this.formLabelText});