size property
inherited
Changing the size will affect the size of the rendering of the node.
myNode.size = new Size(1024.0, 1024.0);
Implementation
Size size
Changing the size will affect the size of the rendering of the node.
myNode.size = new Size(1024.0, 1024.0);
Implementation
@override
set size(Size size) {
super.size = size;
_isDirty = true;
}