AuthToken constructor

const AuthToken({
  1. required String accessToken,
  2. String tokenType = defaultTokenType,
  3. String? refreshToken,
  4. int? expiresIn,
})

Implementation

const AuthToken({
  required this.accessToken,
  this.tokenType = defaultTokenType,
  this.refreshToken,
  this.expiresIn,
});