possiblyWithHTML function

bool possiblyWithHTML(
  1. String? s
)

Implementation

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