HtmlEscapeMode constructor

const HtmlEscapeMode({
  1. String name = "custom",
  2. bool escapeLtGt = false,
  3. bool escapeQuot = false,
  4. bool escapeApos = false,
  5. bool escapeSlash = false,
})

Create a custom escaping mode.

The _name is only used as the result of toString, and defaults to 'custom' if not provided.

All modes escape &. The mode can further be set to escape < and > (escapeLtGt), " (escapeQuot), ' (escapeApos), and/or / (escapeSlash).

Implementation

const new({
  String name = "custom",
  bool escapeLtGt = false,
  bool escapeQuot = false,
  bool escapeApos = false,
  bool escapeSlash = false,
}) : this._(name, escapeLtGt, escapeQuot, escapeApos, escapeSlash);