transforms property

The transforms list shouldn't be modified directly, that is why an UnmodifiableListView is used. If you want to add transforms use the add or addTransform method.

Implementation

UnmodifiableListView<RSTransform> get transforms {
  return UnmodifiableListView<RSTransform>(_transforms);
}