allowsAttribute 方法

bool allowsAttribute(
  1. Element element,
  2. String attributeName,
  3. String value
)
override

如果允许该属性,则返回 true。

attributeName 参数始终使用小写。

有关 tagName 格式,请参阅 allowsElement

实现

bool allowsAttribute(Element element, String attributeName, String value) {
  return _validators
      .any((v) => v.allowsAttribute(element, attributeName, value));
}