setHeight method

void setHeight(
  1. double height, {
  2. bool stretch = false,
  3. Vector3? aboutPoint,
  4. Vector3 aboutEdge = ORIGIN,
})

Implementation

void setHeight(double height,
    {bool stretch = false, Vector3? aboutPoint, Vector3 aboutEdge = ORIGIN}) {
  rescaleToFit(height, 1,
      stretch: stretch, aboutEdge: aboutEdge, aboutPoint: aboutPoint);
}