TurnBox constructor
const
TurnBox({
- Key? key,
- double turns = .0,
- int speed = 200,
- TurnBoxController? controller,
- required Widget child,
Implementation
const TurnBox({
Key? key,
this.turns = .0,
this.speed = 200,
this.controller,
required this.child,
}) : super(key: key);