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.

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

Implementation

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

© 2012 the Dart project authors
Licensed under the Creative Commons Attribution-ShareAlike License v4.0.
https://api.dart.dev/stable/2.13.0/dart-convert/HtmlEscapeMode/HtmlEscapeMode.html