Credential constructor

const Credential({
  1. String? accessToken,
  2. AdditionalInfo? additionalUserInfo,
  3. Object? credential,
  4. String? displayName,
  5. String? email,
  6. bool? emailVerified,
  7. String? idToken,
  8. bool? isAnonymous,
  9. Metadata? metadata,
  10. Object? multiFactor,
  11. String? phoneNumber,
  12. String? photoURL,
  13. List<Info>? providerData,
  14. String? providerId,
  15. String? refreshToken,
  16. String? signInMethod,
  17. String? smsCode,
  18. String? tenantId,
  19. String? uid,
  20. String? verificationId,
})

Implementation

const Credential({
  this.accessToken,
  this.additionalUserInfo,
  this.credential,
  this.displayName,
  this.email,
  this.emailVerified,
  this.idToken,
  this.isAnonymous,
  this.metadata,
  this.multiFactor,
  this.phoneNumber,
  this.photoURL,
  this.providerData,
  this.providerId,
  this.refreshToken,
  this.signInMethod,
  this.smsCode,
  this.tenantId,
  this.uid,
  this.verificationId,
});