AuthCallbackResult constructor

AuthCallbackResult({
  1. String? code,
  2. String? accessToken,
  3. String? refreshToken,
  4. int? expiresIn,
  5. String? error,
  6. String? session,
})

Implementation

AuthCallbackResult({
  this.code,
  this.accessToken,
  this.refreshToken,
  this.expiresIn,
  this.error,
  this.session,
});