AddOTPSMSAuthenticatorResponse constructor
Implementation
factory AddOTPSMSAuthenticatorResponse({
$2.Details? details,
$core.String? otpSmsId,
$core.String? verificationCode,
}) {
final result = create();
if (details != null) result.details = details;
if (otpSmsId != null) result.otpSmsId = otpSmsId;
if (verificationCode != null) result.verificationCode = verificationCode;
return result;
}