AddOTPSMSAuthenticatorResponse constructor

AddOTPSMSAuthenticatorResponse({
  1. Details? details,
  2. String? otpSmsId,
  3. String? verificationCode,
})

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;
}