AddOTPSMSAuthenticatorRequest constructor

AddOTPSMSAuthenticatorRequest({
  1. String? userId,
  2. SetPhone? phone,
})

Implementation

factory AddOTPSMSAuthenticatorRequest({
  $core.String? userId,
  $5.SetPhone? phone,
}) {
  final $result = create();
  if (userId != null) {
    $result.userId = userId;
  }
  if (phone != null) {
    $result.phone = phone;
  }
  return $result;
}