escapeHtml function

String escapeHtml(
  1. String html
)

Implementation

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