Stick constructor

const Stick({
  1. Key? key,
  2. bool feedback = false,
  3. required double diameter,
  4. Icon? icon,
  5. Color? color,
})

Implementation

const Stick({
  super.key,
  this.feedback = false,
  required this.diameter,
  this.icon,
  this.color,
});