Cube3DAnimation constructor

const Cube3DAnimation({
  1. Key? key,
  2. required Widget child,
  3. double sideLength = 100,
  4. Duration duration = const Duration(seconds: 4),
  5. bool isContinuous = true,
})

Constructor for the Cube3DAnimation widget.

Implementation

const Cube3DAnimation({
  super.key,
  required this.child,
  this.sideLength = 100,
  this.duration = const Duration(seconds: 4),
  this.isContinuous = true,
});