checkHasTrustDialogAccepted method

bool checkHasTrustDialogAccepted()

Check if the trust dialog has been accepted for the cwd.

Implementation

bool checkHasTrustDialogAccepted() {
  if (_trustAccepted) return true;
  _trustAccepted = _computeTrustDialogAccepted();
  return _trustAccepted;
}