Another solution, more streamlined (but N and N-miss are in the same column) :
tbl_summary(data = iris , missing = "no") %>%
add_n(statistic = "{N_nonmiss} ({p_nonmiss}%) / {N_miss} ({p_miss}%)",
col_label = "**Non-missing / Missing**")
The output :