check property

bool check

Implementation

bool get check {
  if (containsKey(BuiltInAttributeKey.checkbox) &&
      this[BuiltInAttributeKey.checkbox] is bool) {
    return this[BuiltInAttributeKey.checkbox];
  }
  return false;
}