For example in my user model I have a computed property fullName
:
var fullName: String {
return firstName + " " + lastName
}
I want to set a short description for this variable so that during Code Completion I have a small hint.
Like in the screen below:
How to do this?