stretchToFitHeight method

void stretchToFitHeight(
  1. double height, {
  2. Vector3? aboutPoint,
  3. Vector3 aboutEdge = ORIGIN,
})

Implementation

void stretchToFitHeight(double height,
    {Vector3? aboutPoint, Vector3 aboutEdge = ORIGIN}) {
  return setHeight(height,
      aboutPoint: aboutPoint, aboutEdge: aboutEdge, stretch: true);
}