I have the below method call.
If name or desc is null, it uses the word null. Instead I would like an empty string.
How to achieve this as part of the method call itself. I don't want to do this outside of the method call with if conditions.
boolean creatok = users.create (String.valueOf(name), String.valueOf(desc));