Table constructor

Table({
  1. required TableHead head,
  2. required TableBody body,
  3. TableCaption? caption,
  4. String? id,
  5. Iterable<String>? classes,
  6. Iterable<String>? inlineStyles,
})

Implementation

Table({
  required this.head,
  required this.body,
  this.caption,
  super.id,
  super.classes,
  super.inlineStyles,
}) : super(children: [head, body]);