modifications method

String modifications()

Returns the textual representation of all properties that have non default (overridden) values.

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

e.g. userInteractionTimeout=60.0 would be returned as UIT=60.0.

Implementation

String modifications() {
  return _cachedModifications;
}