string.toString()
Get a String representation of the value.
Examples
Pass a Time value
let t1 = Time.fromString("2099-10-20T21:15:09.890729Z")
t1.toString()
"2099-10-20T21:15:09.890729Z"
Pass a Null value
If passed Null, toString()
returns a "null"
string representation.
For example:
{a: null}.a?.toString()
"null"