escapeHtml function

String escapeHtml(
  1. String html
)

Implementation

String escapeHtml(String html) =>
    html.replaceAll('&', '&amp;').replaceAll('<', '&lt;').replaceAll('>', '&gt;').replaceAll('"', '&quot;');