setEscapeCharacter method
Sets the escape character used to ignore placeholder prefix and separator.
For example, \#{host}
will be treated as a literal instead of a placeholder.
Implementation
@override
void setEscapeCharacter(Character? escapeCharacter) {
_escapeCharacter = escapeCharacter;
}