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