decodeHtml function

String decodeHtml(
  1. String str
)

Implementation

String decodeHtml(String str) {
  return HtmlUnescape().convert(str);
}