If you're not a fan of having multiple calls in ea...
# getting-started
a
If you're not a fan of having multiple calls in each one like that, make it two lines.
val myObj = A.firstOrNull() ?: B.first()
then
val field = myObj.field
.
2