htmlEscape method

String htmlEscape(
  1. HtmlEscapeMode mode
)

Converts to string with HtmlEscape with mode.

Implementation

String htmlEscape(HtmlEscapeMode mode) {
  return HtmlEscape(mode).convert(this);
}