scale method
Concatenates a scale into the transform.
Implementation
void scale(double x, [double? y, double? z]) {
_transform!.scale(x, y, z);
markNeedsPaint();
markNeedsSemanticsUpdate();
}
Concatenates a scale into the transform.
void scale(double x, [double? y, double? z]) {
_transform!.scale(x, y, z);
markNeedsPaint();
markNeedsSemanticsUpdate();
}