isCheckedByID method

bool? isCheckedByID(
  1. dynamic id
)

Implementation

bool? isCheckedByID(dynamic id) {
  if (id == null) return null;
  var checkElem = _getCheckElement('$id');
  return _isChecked(checkElem);
}