isRowSelected method

bool isRowSelected(
  1. String rowId
)

Check if row is selected

Implementation

bool isRowSelected(String rowId) {
  return selectedRowIds.contains(rowId);
}