AuthResult constructor

const AuthResult({
  1. String? accessToken,
  2. String? idToken,
  3. String? tokenSecret,
})

Implementation

const AuthResult({
  this.accessToken,
  this.idToken,
  this.tokenSecret,
});