createAuthorizeUrl method

String createAuthorizeUrl()

Generates an Authorization URL

This should be displayed to the user.

Implementation

String createAuthorizeUrl() {
  if (_response['verification_uri'] == null) {
    throw Error();
  }
  return '${_response['verification_uri']}?user_code=${_response['user_code']}';
}