silent property

bool? get silent

Whether we should show the indication to sign in in the Accounts menu.

If false, the user will be shown a badge on the Accounts menu with an option to sign in for the extension. If true, no indication will be shown.

Defaults to false.

Note: you cannot use this option with any other options that prompt the user like {@link AuthenticationGetSessionOptions.createIfNone createIfNone}.

Implementation

_i2.bool? get silent => _i5.getProperty(
      this,
      'silent',
    );
set silent (bool? value)

Implementation

set silent(_i2.bool? value) {
  _i5.setProperty(
    this,
    'silent',
    value ?? _i6.undefined,
  );
}