AuthResponse constructor

AuthResponse({
  1. String? accessToken,
  2. int? expiresIn,
  3. String? tokenType,
})

Implementation

AuthResponse({
  this.accessToken,
  this.expiresIn,
  this.tokenType,
});