trusted property

bool get trusted

The result of the trust verification: true if trust for the given verification details could be established and false if trust is rejected for any reason.

Implementation

bool get trusted => _wrapped.trusted;
set trusted (bool v)

Implementation

set trusted(bool v) {
  _wrapped.trusted = v;
}