DisplayRow.str constructor

DisplayRow.str({
  1. required String fixedCell,
  2. required Iterable<String> cells,
})

Implementation

DisplayRow.str({required this.fixedCell, required Iterable<String> cells})
    : cells = cells.map((e) => DisplayCell(e));