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