HtmlTableCaption constructor

const HtmlTableCaption({
  1. required Widget child,
  2. required int columnSpan = 1,
  3. required int rowIndex,
  4. Key? key,
})

Creates a table caption widget.

Implementation

const HtmlTableCaption({
  required super.child,
  required super.columnSpan,
  required int rowIndex,
  super.key,
}) : super._(
        columnStart: 0,
        isCaption: true,
        rowStart: rowIndex,
      );