getAttributeValueAsBool method
Calls getAttributeValue and returns parsed as bool.
Implementation
bool getAttributeValueAsBool(String name, [DOMContext? domContext]) {
return parseBool(getAttributeValue(name, domContext), false)!;
}
Calls getAttributeValue and returns parsed as bool.
bool getAttributeValueAsBool(String name, [DOMContext? domContext]) {
return parseBool(getAttributeValue(name, domContext), false)!;
}