init()

in Sources/UberAuth/Authorize/AuthorizationCodeAuthProvider.swift [414:425]


    init(tokenResponse: TokenRequest.Response) {
        self = Client(
            authorizationCode: nil,
            accessToken: AccessToken(
                tokenString: tokenResponse.tokenString,
                refreshToken: tokenResponse.refreshToken,
                tokenType: tokenResponse.tokenType,
                expiresIn: tokenResponse.expiresIn,
                scope: tokenResponse.scope
            )
        )
    }