sources property
UnmodifiableListView<Rect>
get
sources
The sources list shouldn't be modified directly, that is why an UnmodifiableListView is used. If you want to add sources use the add or addTransform method.
Implementation
UnmodifiableListView<Rect> get sources {
return UnmodifiableListView<Rect>(_sources);
}