htmlUnescapes top-level property

Map<String, String> htmlUnescapes
final

Used to map HTML entities to characters.

Implementation

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