AuthToken constructor

AuthToken({
  1. required String accessToken,
  2. required String idToken,
  3. required String refreshToken,
  4. required String tokenType,
  5. required DateTime expiryDate,
  6. required String scope,
})

Implementation

AuthToken({
  required this.accessToken,
  required this.idToken,
  required this.refreshToken,
  required this.tokenType,
  required this.expiryDate,
  required this.scope,
});