```return response.events?.flatMap { evt -> evt...
# announcements
f
Copy code
return response.events?.flatMap { evt -> evt.questions?.map { it.correct }!!.toList() }
if
evt.questions
is null it will return null in the flatMap or it will throw the
!!
before
.toList()
?