TableTitleItem constructor

TableTitleItem({
  1. String? title = '',
  2. Widget? widget,
  3. double width = 100,
})

width of column

default is 100

Implementation

TableTitleItem({
  this.title = '',
  this.widget,
  this.width = 100,
});