PasskeyIdentity class Null safety
Identity information associated with a Passkey. An Identity is a unique identifier that may be used by an end-user to gain access governed by Beyond Identity. An Identity is created at the Realm level. An end-user may have multiple identities. A Realm can have many Identities.
Constructors
- PasskeyIdentity({required String id, required String displayName, required String username, required String? primaryEmailAddress})
Properties
- displayName ↔ String
-
The display name of the identity.
read / write
- hashCode → int
-
The hash code for this object.
read-onlyinherited
- id ↔ String
-
The unique identifier of the identity.
read / write
- primaryEmailAddress ↔ String?
-
The primary email address of the identity.
read / write
- runtimeType → Type
-
A representation of the runtime type of the object.
read-onlyinherited
- username ↔ String
-
The username of the identity.
read / write
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a non-existent method or property is accessed.
inherited
-
toJson(
) → String -
toString(
) → String -
A string representation of this object.
override
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited
Static Methods
-
mapToIdentity(
dynamic passkey) → PasskeyIdentity