foundAuthCode method

void foundAuthCode(
  1. String? authCode
)

Call this when you recieve the Auth token.

Implementation

void foundAuthCode(String? authCode) {
  this.authCode = authCode;
  hasCompleted = true;
  _completer.complete(authCode);
}