register method
Creates a new passkey and stores it on the device.
Returns a solution to the challenge from relyingParty
Implementation
Future<RegisterResponseType> register(
String challenge,
RelyingPartyType relyingParty,
UserType user,
AuthenticatorSelectionType authSelectionType,
List<PubKeyCredParamType>? pubKeyCredParams,
int? timeout,
String? attestation,
) {
return _platform.register(
challenge,
relyingParty,
user,
authSelectionType,
pubKeyCredParams,
timeout,
attestation,
);
}