AuthToken constructor

const AuthToken({
  1. required String accessToken,
  2. String? idToken,
  3. String? refreshToken,
  4. String? tokenType,
  5. int? expiresIn,
  6. OpenIdUser? user,
})

AuthToken default constructor

Implementation

const AuthToken({
  required this.accessToken,
  this.idToken,
  this.refreshToken,
  this.tokenType,
  this.expiresIn,
  this.user,
});