OauthAuthentication constructor

OauthAuthentication(
  1. String? userName,
  2. String? token
)

Implementation

OauthAuthentication(String? userName, String? token)
    : super(userName, MailAuthentication._typeOauth) {
  this.token = token;
}