Multiggle constructor

const Multiggle({
  1. Key? key,
  2. Color backgroundColor = Colors.grey,
  3. Color borderColor = Colors.black,
  4. Color indicatorColor = Colors.black,
  5. required int count,
  6. OnMultigglePositionChanged? onPositionChanged,
  7. MultiggleController? controller,
  8. 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);