TodayTableColumn constructor

const TodayTableColumn({
  1. required String label,
  2. TextAlign align = TextAlign.left,
  3. double? width,
  4. bool selectable = false,
  5. TodayCheckboxValue selectableValue = TodayCheckboxValue.unchecked,
  6. bool selected = false,
  7. bool isMore = false,
  8. Widget? showcase,
  9. dynamic onChanged(
    1. TodayCheckboxValue value
    )?,
})

Implementation

const TodayTableColumn({
  required this.label,
  this.align = TextAlign.left,
  this.width,
  this.selectable = false,
  this.selectableValue = TodayCheckboxValue.unchecked,
  this.selected = false,
  this.isMore = false,
  this.showcase,
  this.onChanged,
});