GetMessageOptions constructor
GetMessageOptions({
- bool? escapeLt,
Implementation
GetMessageOptions(
{
/// Escape `<` in translation to `&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.
bool? escapeLt})
: _wrapped = $js.GetMessageOptions(escapeLt: escapeLt);