isRowExpanded method

bool isRowExpanded(
  1. String rowId
)

Check if row is expanded (for tree data)

Implementation

bool isRowExpanded(String rowId) {
  return expandedRowIds.contains(rowId);
}