possiblyWithHTMLTag function

bool possiblyWithHTMLTag(
  1. String? s
)

Implementation

bool possiblyWithHTMLTag(String? s) =>
    s != null && s.contains('<') && s.contains(_regexpPossiblyHtmlTag);