FlexTableItemConfig constructor

const FlexTableItemConfig({
  1. double? width,
  2. double? height,
  3. int? flex = 1,
  4. String? name,
  5. bool hidden = false,
})

Implementation

const FlexTableItemConfig({
  this.width,
  this.height,
  this.flex = 1,
  this.name,
  this.hidden = false,
});