TableRow constructor

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

Implementation

TableRow({
  this.cells = const [],
  super.id,
  super.className,
  super.style,
  super.attributes,
  super.tag = 'tr',
});