Orb constructor

const Orb({
  1. Key? key,
  2. required OrbController controller,
  3. double radius = 80.0,
  4. List<Color> waveColors = OrbPalette.siriOriginal,
  5. GestureTapCallback? onTap,
})

Implementation

const Orb({
  super.key,
  required this.controller,
  this.radius = 80.0,
  this.waveColors = OrbPalette.siriOriginal,
  this.onTap,
});