AuthCredentialVO.fromAuthCredential constructor

AuthCredentialVO.fromAuthCredential(
  1. AuthCredential credential
)

Implementation

factory AuthCredentialVO.fromAuthCredential(AuthCredential credential) {
  return AuthCredentialVO(
    accessToken: credential.accessToken,
    providerId: credential.providerId,
    signInMethod: credential.signInMethod,
    token: credential.token,
  );
}