``` foo.veryDescriptiveMethodName() ?.addi...
# codingconventions
k
Copy code
foo.veryDescriptiveMethodName()
        ?.additionalCall()
seems perfect to me. The following is the only other way I can think to write it and it just looks bad IMO
Copy code
foo.veryDescriptiveMethodName()?
        .additionalCall()