escapeLt property

bool? get escapeLt

Escape < in translation to &amp;lt;. This applies only to the message itself, not to the placeholders. Developers might want to use this if the translation is used in an HTML context. Closure Templates used with Closure Compiler generate this automatically.

Implementation

bool? get escapeLt => _wrapped.escapeLt;
set escapeLt (bool? v)

Implementation

set escapeLt(bool? v) {
  _wrapped.escapeLt = v;
}