RegisterResult class

Represents the result of a biometric registration process.

Contains the challenge, public key, and signature returned after successfully registering a device biometric credential.

Constructors

RegisterResult({String? challenge, String? publicKey, String? signature})
Creates a new RegisterResult instance.
RegisterResult.fromJson(dynamic json)
Creates a RegisterResult instance from a JSON map.

Properties

challenge String?
The challenge string returned during registration.
getter/setter pair
hashCode int
The hash code for this object.
no setterinherited
publicKey String?
The public key generated for the registered biometric credential.
getter/setter pair
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
signature String?
The signature corresponding to the registration challenge.
getter/setter pair

Methods

copyWith({String? challenge, String? publicKey, String? signature}) RegisterResult
Returns a copy of this RegisterResult with updated fields.
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson() Map<String, dynamic>
Converts this RegisterResult into a JSON-compatible map.
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited