lines property

List<String> get lines

Implementation

List<String> get lines {
  return _grid.map((row) => row.join('').trimRight()).toList();
}