unescape function

String unescape(
  1. String str
)

Converts HTML entities back into their unsafe character equivalents.

Reverses the transformation performed by escape.

Example:

unescape('&lt;script&gt;'); // '<script>'

Implementation

String unescape(String str) => _unescape(str);