RotatingView constructor

const RotatingView({
  1. required Widget child,
  2. Duration? speed = const Duration(seconds: 2),
  3. Key? key,
})

Implementation

const RotatingView(
    { required this.child,
      this.speed = const Duration(seconds: 2),
      Key? key})
    : super(key: key);