SecureAuthenticationInfo constructor

const SecureAuthenticationInfo({
  1. required String refreshToken,
  2. String? accessToken,
  3. num? tenantId,
})

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,
});