unescapeIcu method

String unescapeIcu()

Implementation

String unescapeIcu() {
  return replaceAll(
    "__‹ESC_QUOTE›__",
    "'",
  ).replaceAll("__‹ESC_OPEN›__", "{").replaceAll("__‹ESC_CLOSE›__", "}");
}