在Kotlin中为具有函数链的可为空值返回默认值

给定此代码

myValue.number?.setScale(2).toString() ?: ""

I want it to return "" if number is null. But it just returns null. What concept did I not grasp here?