register method

Future<RegisterResponse> register(
  1. String arg_challenge,
  2. RelyingParty arg_relyingParty,
  3. User arg_user,
  4. AuthenticatorSelection? arg_authenticatorSelection,
  5. List<PubKeyCredParam?>? arg_pubKeyCredParams,
  6. int? arg_timeout,
  7. String? arg_attestation,
  8. List<ExcludeCredential?> arg_excludeCredentials,
)

Implementation

Future<RegisterResponse> register(
    String arg_challenge,
    RelyingParty arg_relyingParty,
    User arg_user,
    AuthenticatorSelection? arg_authenticatorSelection,
    List<PubKeyCredParam?>? arg_pubKeyCredParams,
    int? arg_timeout,
    String? arg_attestation,
    List<ExcludeCredential?> arg_excludeCredentials) async {
  final BasicMessageChannel<Object?> channel = BasicMessageChannel<Object?>(
      'dev.flutter.pigeon.passkeys_windows.PasskeysApi.register', codec,
      binaryMessenger: _binaryMessenger);
  final List<Object?>? replyList = await channel.send(<Object?>[
    arg_challenge,
    arg_relyingParty,
    arg_user,
    arg_authenticatorSelection,
    arg_pubKeyCredParams,
    arg_timeout,
    arg_attestation,
    arg_excludeCredentials
  ]) 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?)!;
  }
}