TreeColumn constructor

const TreeColumn({
  1. required OdooField field,
  2. ColumnAggregate aggregate = ColumnAggregate.none,
  3. ColumnOptional optional = ColumnOptional.none,
  4. String? width,
  5. bool editable = false,
  6. String? decoration,
})

Implementation

const TreeColumn({
  required this.field,
  this.aggregate = ColumnAggregate.none,
  this.optional = ColumnOptional.none,
  this.width,
  this.editable = false,
  this.decoration,
});