rotateZ method

void rotateZ(
  1. double radians
)

Concatenates a rotation about the z axis into the transform.

Implementation

void rotateZ(double radians) {
  _transform!.rotateZ(radians);
  markNeedsPaint();
  markNeedsSemanticsUpdate();
}