BsTableRow constructor

const BsTableRow({
  1. BsTableVariant? variant,
  2. BsTableVerticalAlign? verticalAlign,
  3. bool active = false,
  4. required List<BsTableCell> children,
})

Creates a BsTableRow.

Implementation

const BsTableRow({
  this.variant,
  this.verticalAlign,
  this.active = false,
  required this.children,
});