NeoDataTableRow constructor

const NeoDataTableRow({
  1. required List<String> cells,
  2. bool highlight = false,
})

Creates a NeoDataTableRow instance.

Implementation

const NeoDataTableRow({
  required this.cells,
  this.highlight = false,
});