rotateX method

void rotateX (double radians)

Concatenates a rotation about the x axis into the transform.

Implementation

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