how about `Handler.postDelayed(amount: Int, unit: ...
# android
j
how about
Handler.postDelayed(amount: Int, unit: TimeUnit, ...)
so it becomes
handler.postDelayed(2, SECONDS) { .. }
?