possiblyWithHTMLEntity function

bool possiblyWithHTMLEntity(
  1. String? s
)

Implementation

bool possiblyWithHTMLEntity(String? s) =>
    s != null && s.contains('&') && s.contains(_regexpPossiblyHtmlEntity);