RotatedWidget constructor

const RotatedWidget({
  1. Key? key,
  2. required double angle,
  3. FilterQuality? filterQuality,
  4. required Widget? child,
})

Creates a widget that rotates its child.

The angle and child arguments must not be null.

Implementation

const RotatedWidget({
  super.key,
  required this.angle,
  this.filterQuality,
  required super.child,
});