```fun Collection<SequenceFlow>.links(): Lis...
# getting-started
f
Copy code
fun Collection<SequenceFlow>.links(): List<BotFlowNodeLink?> = this.map { it.link() }.filter{it != null}
Kotlin force me to put ? after BotFlowNodeLink, I don’t understand why