FreedomTableHeaderCell constructor
FreedomTableHeaderCell({})
Implementation
FreedomTableHeaderCell({
this.flex,
this.fixedWidth,
required this.child,
this.isFixedColumn = false,
}) {
if (fixedWidth != null) {
widthType = CellWidthType.fixed;
} else {
widthType = CellWidthType.flex;
flex ??= 1;
}
}