setChecked method

void setChecked(
  1. bool? flag
)

Implementation

void setChecked(bool? flag) {
  _checked = flag;
  if (type.isGroup) {
    for (final child in type.group.children) {
      child.setChecked(flag);
    }
  }
}