escape function

String escape(
  1. String str
)

replace <, >, &, ' and " with HTML entities

Implementation

String escape(String str) => str
    .replaceAll(RegExp('&'), '&amp;')
    .replaceAll(RegExp('"'), '&quot;')
    .replaceAll(RegExp("'"), '&#x27;')
    .replaceAll(RegExp('<'), '&lt;')
    .replaceAll(RegExp('>'), '&gt;');