allowsAttribute 方法
override
如果允许该属性,则返回 true。
attributeName 参数将始终为小写。
有关 tagName 的格式,请参阅 allowsElement。
实现
bool allowsAttribute(Element element, String attributeName, String value) {
return _validators
.any((v) => v.allowsAttribute(element, attributeName, value));
}