BsTableCell.header constructor

const BsTableCell.header({
  1. BsTableVariant? variant,
  2. BsTableVerticalAlign? verticalAlign,
  3. bool active = false,
  4. bool isHeader = true,
  5. required Widget child,
})

Creates a BsTableCell marked as a header cell.

Implementation

const BsTableCell.header({
  this.variant,
  this.verticalAlign,
  this.active = false,
  this.isHeader = true,
  required this.child,
});