clone method

OAuthToken clone()

Clone this token.

Implementation

OAuthToken clone() => OAuthToken(
      accessToken,
      refreshToken,
      tokenType,
      expiresAt,
      scope,
      idToken,
    );