Multiggle constructor
const
Multiggle({
- Key? key,
- Color backgroundColor = Colors.grey,
- Color borderColor = Colors.black,
- Color indicatorColor = Colors.black,
- required int count,
- OnMultigglePositionChanged? onPositionChanged,
- MultiggleController? controller,
- int initialPosition = 0,
Implementation
const Multiggle({
Key? key,
this.backgroundColor = Colors.grey,
this.borderColor = Colors.black,
this.indicatorColor = Colors.black,
required this.count,
this.onPositionChanged,
this.controller,
this.initialPosition = 0,
}) : super(key: key);