RotationIndexedStack constructor
      const
      RotationIndexedStack({ 
    
- Key? key,
- List<Widget> children = const [],
- StackFit sizing = StackFit.loose,
- AlignmentGeometry alignment = AlignmentDirectional.topStart,
- int? index = 0,
- TextDirection? textDirection,
- Duration duration = const Duration(milliseconds: 250),
- double beginTurn = 0.0,
- double endTurn = 1.0,
- Curve curve = Curves.easeInOut,
Creates An Indexed Stack with Rotation Animation.
Implementation
const RotationIndexedStack({
  super.key,
  this.children = const [],
  this.sizing = StackFit.loose,
  this.alignment = AlignmentDirectional.topStart,
  this.index = 0,
  this.textDirection,
  this.duration = const Duration(milliseconds: 250),
  this.beginTurn = 0.0,
  this.endTurn = 1.0,
  this.curve = Curves.easeInOut,
});