unescape function
The inverse of _.escape; this method converts the HTML entities &, <, >, ", and ' in string to their corresponding characters
Implementation
String unescape([String string = '']) {
return string
.replaceAll('&', '&')
.replaceAll('<', '<')
.replaceAll('>', '>')
.replaceAll('"', '"')
.replaceAll(''', "'");
}