TableRowData constructor

const TableRowData({
  1. String? key,
  2. required Map<String, Object?> cells,
  3. Object? actions,
  4. bool selected = false,
  5. String? className,
  6. Map<String, Object?> props = const {},
  7. Map<String, Object?> style = const {},
  8. DartStyle? dartStyle,
})

Creates table row data.

Implementation

const TableRowData({
  this.key,
  required this.cells,
  this.actions,
  this.selected = false,
  this.className,
  this.props = const {},
  this.style = const {},
  this.dartStyle,
});