Starts the registration of a new passkey for the signed in user.
options to the platform's passkey API to create the credential, then call passkey.verifyRegistration() with the result.user.name/displayName in the registration options, they are backfilled with friendlyName (or a generic Passkey default) before the platform ceremony.Human readable name used as a fallback for the WebAuthn `user.name`/`displayName` when the server omits them. Defaults to `Passkey` when not provided.
final PasskeyRegistrationOptionsResponse registration =
await supabase.auth.passkey.startRegistration(
friendlyName: 'Work laptop',
);
// Hand registration.options to the platform passkey API.