rotate abstract method

void rotate({
  1. double? angle,
})

Indicates that a rotate transform is expected next.

Calls are skipped until a call to Canvas.rotate is found. If the angle argument is provided here, the call's argument is compared to it. If that fails to match, or if no call to Canvas.rotate is found, then the matcher fails.

Implementation

void rotate({ double? angle });