ColumnEntity constructor

const ColumnEntity({
  1. bool primaryKey = false,
  2. bool autoIncrease = false,
  3. String? name,
  4. String title = '',
  5. String type = 'string',
  6. String? format,
  7. String description = '',
  8. bool display = true,
  9. bool editable = true,
  10. double widthFactor = 0.2,
  11. InputDecorationEntity? inputDecoration,
  12. ConstrainsEntity? constrains,
  13. StyleEntity? style,
})

Implementation

const ColumnEntity({
  this.primaryKey = false,
  this.autoIncrease = false,
  this.name,
  this.title = '',
  this.type = 'string',
  this.format,
  this.description = '',
  this.display = true,
  this.editable = true,
  this.widthFactor = 0.2,
  this.inputDecoration,
  this.constrains,
  this.style,
});