AuthenticateResult class
Represents the result of a biometric authentication process.
Contains the challenge and signature returned after successfully authenticating with a registered device biometric credential.
Constructors
- AuthenticateResult({String? challenge, String? signature})
- Creates a new AuthenticateResult instance.
- AuthenticateResult.fromJson(dynamic json)
- Creates an AuthenticateResult instance from a JSON map.
Properties
- challenge ↔ String?
-
The challenge string returned during authentication.
getter/setter pair
- hashCode → int
-
The hash code for this object.
no setterinherited
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
- signature ↔ String?
-
The signature corresponding to the authentication challenge.
getter/setter pair
Methods
-
copyWith(
{String? challenge, String? signature}) → AuthenticateResult - Returns a copy of this AuthenticateResult with updated fields.
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toJson(
) → Map< String, dynamic> - Converts this AuthenticateResult into a JSON-compatible map.
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited