BsTableCell constructor

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

Creates a BsTableCell.

Implementation

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