register method

Future<RegisterResponse> register(
  1. String arg_challenge,
  2. RelyingParty arg_relyingParty,
  3. User arg_user,
  4. List<CredentialType?> arg_excludeCredentials,
  5. List<int?> arg_pubKeyCredValues,
  6. bool arg_canBePlatformAuthenticator,
  7. bool arg_canBeSecurityKey,
  8. String? arg_residentKeyPreference,
  9. String? arg_attestationPreference,
  10. 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?)!;
  }
}