rotate method

AnimatedWidgetBuilder rotate(
  1. double degrees
)

Rotate animation (in degrees)

Implementation

AnimatedWidgetBuilder rotate(double degrees) {
  return _copyWith(config: config.copyWith(rotate: degrees));
}