htmlEscapes top-level property

Map<String, String> htmlEscapes
final

Used to map characters to HTML entities.

Implementation

final htmlEscapes = {
  '&': '&amp;',
  '<': '&lt;',
  '>': '&gt;',
  '"': '&quot;',
  "'": '&#39;'
};