Safe Call Operator (?.) (Kotlin)
The safe-call operator ?. calls a method or accesses a property only if the receiver is non-null; if it's null, the whole expression evaluates to null…
The safe-call operator ?. calls a method or accesses a property only if the receiver is non-null; if it's null, the whole expression evaluates to null…