Compass constructor
Compass({
- Key? key,
- double width = 300,
- double itemWidth = 60,
- required CompassController controller,
- double initialHeading = 0,
Implementation
Compass({
super.key,
this.width = 300,
this.itemWidth = 60,
required this.controller,
this.initialHeading = 0,
}) {
controller.itemWidth = itemWidth;
controller.initItems(initialHeading, width, itemWidth);
}