description method

String description()

Returns the textual representation of all properties.

Property names are shortened to camel case and appended with the value, except for NSString (Obj-C) / String (Swift, Java, Kotlin) properties which omit the property name.

e.g. debugLog=5 would be returned as DL=5.

Implementation

String description() {
  return _cachedDescription;
}