Tbody constructor

Tbody({
  1. List<TableRow> rows = const [],
  2. String? id,
  3. String? className,
  4. Map<String, dynamic>? style,
  5. Map<String, String>? attributes,
  6. String tag = 'tbody',
})

Implementation

Tbody({
  this.rows = const [],
  super.id,
  super.className,
  super.style,
  super.attributes,
  super.tag = 'tbody',
});