hasHTMLTag function

bool hasHTMLTag(
  1. String s
)

Implementation

bool hasHTMLTag(String s) {
  return _patternHtmlElement.hasMatch(s);
}