rotate method

Widget rotate({
  1. double? value,
})

Implementation

Widget rotate({double? value}) => RotationTransition(
    turns: AlwaysStoppedAnimation(value ?? 0), child: this);