isTrusted property

Object isTrusted

Indicates that this markdown string is from a trusted source. Only trusted markdown supports links that execute commands, e.g. [Run it](command:myCommandId).

Defaults to false (commands are disabled).

Implementation

_i2.Object get isTrusted => _i5.getProperty(
      this,
      'isTrusted',
    );
void isTrusted=(Object value)

Implementation

set isTrusted(_i2.Object value) {
  _i5.setProperty(
    this,
    'isTrusted',
    value,
  );
}