ConstBall constructor

const ConstBall({
  1. required Color ballColor,
  2. required Color threadColor,
  3. required double ballSize,
  4. Key? key,
})

Implementation

const ConstBall({
  required this.ballColor,
  required this.threadColor,
  required this.ballSize,
  super.key,
});