register method
Future<RegisterResponse>
register(
- String arg_challenge,
- RelyingParty arg_relyingParty,
- User arg_user,
- List<CredentialType?> arg_excludeCredentials,
- List<int?> arg_pubKeyCredValues,
- bool arg_canBePlatformAuthenticator,
- bool arg_canBeSecurityKey,
- String? arg_residentKeyPreference,
- String? arg_attestationPreference,
- String? arg_salt,
)
Implementation
Future<RegisterResponse> register(
String arg_challenge,
RelyingParty arg_relyingParty,
User arg_user,
List<CredentialType?> arg_excludeCredentials,
List<int?> arg_pubKeyCredValues,
bool arg_canBePlatformAuthenticator,
bool arg_canBeSecurityKey,
String? arg_residentKeyPreference,
String? arg_attestationPreference,
String? arg_salt,
) async {
final BasicMessageChannel<Object?> channel = BasicMessageChannel<Object?>(
'dev.flutter.pigeon.passkeys_darwin.PasskeysApi.register',
codec,
binaryMessenger: _binaryMessenger,
);
final List<Object?>? replyList =
await channel.send(<Object?>[
arg_challenge,
arg_relyingParty,
arg_user,
arg_excludeCredentials,
arg_pubKeyCredValues,
arg_canBePlatformAuthenticator,
arg_canBeSecurityKey,
arg_residentKeyPreference,
arg_attestationPreference,
arg_salt,
])
as List<Object?>?;
if (replyList == null) {
throw PlatformException(
code: 'channel-error',
message: 'Unable to establish connection on channel.',
);
} else if (replyList.length > 1) {
throw PlatformException(
code: replyList[0]! as String,
message: replyList[1] as String?,
details: replyList[2],
);
} else if (replyList[0] == null) {
throw PlatformException(
code: 'null-error',
message: 'Host platform returned null value for non-null return value.',
);
} else {
return (replyList[0] as RegisterResponse?)!;
}
}