Something like this? `val errors = torrent.error?....
# getting-started
a
Something like this?
val errors = torrent.error?.let { listOf(it) }
i
Or
torrent.error?.let(::listOf)