SecureAuthenticationInfo constructor
const
SecureAuthenticationInfo({})
Constructs an instance of SecureAuthenticationInfo.
Parameters:
refreshToken
: The refresh token used for obtaining new access tokens.accessToken
: The optional access token for authentication.tenantId
: The optional tenant ID associated with the authentication.
Implementation
const SecureAuthenticationInfo({
required this.refreshToken,
this.accessToken,
this.tenantId,
});