AuthenticatedUser constructor

AuthenticatedUser({
  1. SignInClient? client,
  2. SignInProvider? provider,
  3. required String? id,
  4. String? name,
  5. String? email,
  6. String? photo,
  7. Map? data,
  8. String? phoneNumber,
  9. bool? emailLVerified,
  10. String? tenantId,
  11. DateTime? creationTime,
  12. DateTime? lastSignInTime,
  13. bool isAnonymous = false,
})

Implementation

AuthenticatedUser(
    {this.client,
    this.provider,
    required this.id,
    this.name,
    this.email,
    this.photo,
    this.data,
    this.phoneNumber,
    this.emailLVerified,
    this.tenantId,
    this.creationTime,
    this.lastSignInTime,
    this.isAnonymous = false});