isEscape property

String isEscape

Converts the characters "&", "<", ">", '"', and "'" in string to their corresponding HTML entities. Example: "hello & world" -> "hello & world"

Implementation

String get isEscape => escape(this);