HtmlTable constructor

HtmlTable({
  1. Border? border,
  2. bool borderCollapse = false,
  3. double borderSpacing = 0.0,
  4. required List<Widget> children = const <Widget>[],
  5. double? maxWidth,
  6. TextDirection textDirection = TextDirection.ltr,
  7. Key? key,
})

Creates a TABLE widget.

Implementation

// TODO: remove lint ignore when our minimum Flutter version >= 3.10
// ignore: prefer_const_constructors_in_immutables
HtmlTable({
  this.border,
  this.borderCollapse = false,
  this.borderSpacing = 0.0,
  required super.children,
  this.maxWidth,
  this.textDirection = TextDirection.ltr,
  super.key,
});