StartTOTPRegistrationResponse constructor
Implementation
factory StartTOTPRegistrationResponse({
$2.Details? details,
$core.String? totpId,
$core.String? uri,
$core.String? secret,
}) {
final $result = create();
if (details != null) {
$result.details = details;
}
if (totpId != null) {
$result.totpId = totpId;
}
if (uri != null) {
$result.uri = uri;
}
if (secret != null) {
$result.secret = secret;
}
return $result;
}