Table constructor
Table({
- TableSection? thead,
- TableSection? tbody,
- TableSection? tfoot,
- String? id,
- String? className,
- Map<
String, dynamic> ? style, - Map<
String, String> ? attributes, - String tag = 'table',
Implementation
Table({
this.caption,
this.thead,
this.tbody,
this.tfoot,
super.id,
super.className,
super.style,
super.attributes,
super.tag = 'table',
});