rotateX method

void rotateX(
  1. double radians
)

Concatenates a rotation about the x axis into the transform.

Implementation

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