You may also find this pattern useful `obj.propert...
# getting-started
d
You may also find this pattern useful
obj.property?.let { propertyArray[propertyArray.size - 1] = it }
it’s a little bit more complex in how it works basically the lambda will only be called if the property is not null.
👍 2