allowInlineStyles 方法

void allowInlineStyles(
  1. {String? tagName}
)

允许元素内的样式。

如果没有指定 tagName,则此方法允许所有元素内的样式。否则,tagName 将限制样式只应用于指定元素。

实现

void allowInlineStyles({String? tagName}) {
  if (tagName == null) {
    tagName = '*';
  } else {
    tagName = tagName.toUpperCase();
  }
  add(new _SimpleNodeValidator(null, allowedAttributes: ['$tagName::style']));
}