size property
override
This node's size, as measured from its text. Zero until it first builds.
Reading it lays the text out if anything has changed, so the size is current for layout, anchoring, and hit testing alike.
Implementation
@override
Vector2 get size {
_reflow();
return _size;
}