PigeonUserInfo constructor

PigeonUserInfo({
  1. required String uid,
  2. String? email,
  3. String? displayName,
  4. String? photoUrl,
  5. String? phoneNumber,
  6. required bool isAnonymous,
  7. required bool isEmailVerified,
  8. String? providerId,
  9. String? tenantId,
  10. String? refreshToken,
  11. int? creationTimestamp,
  12. int? lastSignInTimestamp,
})

Implementation

PigeonUserInfo({
  required this.uid,
  this.email,
  this.displayName,
  this.photoUrl,
  this.phoneNumber,
  required this.isAnonymous,
  required this.isEmailVerified,
  this.providerId,
  this.tenantId,
  this.refreshToken,
  this.creationTimestamp,
  this.lastSignInTimestamp,
});