a way to explain that the given string may be unsafe but must be treated a string
label.setText( unsafehtml`<b>Bold</b> text` );label.setText( new UnsafeHtml("<b>Bold</b> text`" ) ); Copy
label.setText( unsafehtml`<b>Bold</b> text` );label.setText( new UnsafeHtml("<b>Bold</b> text`" ) );
a way to explain that the given string may be unsafe but must be treated a string
Example