possiblyWithHTML function

bool possiblyWithHTML(
  1. String? s
)

Implementation

bool possiblyWithHTML(String? s) {
  return s != null && (possiblyWithHTMLTag(s) || possiblyWithHTMLEntity(s));
}