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