unescape function
Converts HTML entities back into their unsafe character equivalents.
Reverses the transformation performed by escape.
Example:
unescape('<script>'); // '<script>'
Implementation
String unescape(String str) => _unescape(str);