Challenges constructor
Challenges({
- Challenges_WebAuthN? webAuthN,
- String? otpSms,
- String? otpEmail,
Implementation
factory Challenges({
Challenges_WebAuthN? webAuthN,
$core.String? otpSms,
$core.String? otpEmail,
}) {
final result = create();
if (webAuthN != null) result.webAuthN = webAuthN;
if (otpSms != null) result.otpSms = otpSms;
if (otpEmail != null) result.otpEmail = otpEmail;
return result;
}