Credential constructor

const Credential({
  1. String? accessToken,
  2. OAuthCredential? credential,
  3. String? id,
  4. String? idToken,
  5. String? email,
  6. String? name,
  7. String? photo,
  8. String? refreshToken,
})

Implementation

const Credential({
  this.accessToken,
  this.credential,
  this.id,
  this.idToken,
  this.email,
  this.name,
  this.photo,
  this.refreshToken,
});