width property

double get width

The ribbon's world-space width. Takes effect on the next frame.

Implementation

double get width => _width;
set width (double value)

Implementation

set width(double value) {
  _width = value;
  _recomputeBounds();
}