List<List<dynamic>> getSelectedRows() { return data.where((element) => element.selected).toList().map((e) { return e.cells.map((e) { return e.value; }).toList(); }).toList(); }