Hello, this may be a basic question but is there way to have an optional string following a statement? In Swift I can have something like var str = myString() ?? “other string”. So if the string is null, I get “other string”. Does kotlin have anything like this one-line statement?