PasskeyIdpConfig constructor

const PasskeyIdpConfig({
  1. required String hostname,
  2. Duration challengeLifetime = const Duration(minutes: 5),
})

Creates a new configuration.

Implementation

const PasskeyIdpConfig({
  required this.hostname,
  this.challengeLifetime = const Duration(minutes: 5),
});