checked property

bool? checked

The state value that the checkbox is checked. If the enableRowChecked value of the PlutoColumn property is set to true, a check box appears in the cell of the corresponding column. To manually change the values at runtime, use the PlutoStateManager.setRowChecked or PlutoStateManager.toggleAllRowChecked methods.

Implementation

bool? get checked {
  return type.isGroup ? _tristateCheckedRow : _checked;
}