attemptsLeft property

int? get attemptsLeft

The number of attempts left. This is provided so that any UI can present this information to the user. Chrome is not expected to enforce this, instead stopPinRequest should be called by the extension with errorType = MAX_ATTEMPTS_EXCEEDED when the number of pin requests is exceeded.

Implementation

int? get attemptsLeft => _wrapped.attemptsLeft;
set attemptsLeft (int? v)

Implementation

set attemptsLeft(int? v) {
  _wrapped.attemptsLeft = v;
}