VoiceButton constructor

const VoiceButton({
  1. required VoiceButtonPhase phase,
  2. required VoidCallback onTap,
  3. bool open = false,
  4. VoicebotTheme? theme,
  5. Key? key,
})

Implementation

const VoiceButton({
  required this.phase,
  required this.onTap,
  this.open = false,
  this.theme,
  super.key,
});