RemoveOTPSMSAuthenticatorRequest constructor

RemoveOTPSMSAuthenticatorRequest({
  1. String? userId,
  2. String? otpSmsId,
})

Implementation

factory RemoveOTPSMSAuthenticatorRequest({
  $core.String? userId,
  $core.String? otpSmsId,
}) {
  final $result = create();
  if (userId != null) {
    $result.userId = userId;
  }
  if (otpSmsId != null) {
    $result.otpSmsId = otpSmsId;
  }
  return $result;
}