getAllRows method

List<List> getAllRows()

Implementation

List<List<dynamic>> getAllRows() {
  return data.map((e) {
    return e.cells.map((e) {
      return e.value;
    }).toList();
  }).toList();
}