HtmlTableCell constructor

const HtmlTableCell({
  1. Border? border,
  2. required Widget child,
  3. int columnSpan,
  4. required int columnStart,
  5. Key? key,
  6. int rowSpan,
  7. required int rowStart,
  8. CssSizingValue? width,
})

Creates a TD (table cell) widget.

Implementation

const factory HtmlTableCell({
  Border? border,
  required Widget child,
  int columnSpan,
  required int columnStart,
  Key? key,
  int rowSpan,
  required int rowStart,
  CssSizingValue? width,
}) = HtmlTableCell._;