VoiceSearchButton constructor

const VoiceSearchButton({
  1. Key? key,
  2. required VoiceSearchController controller,
  3. VoidCallback? onPressed,
  4. Color? activeColor,
  5. Color? inactiveColor,
  6. double size = 24.0,
  7. String? tooltip,
})

Implementation

const VoiceSearchButton({
  super.key,
  required this.controller,
  this.onPressed,
  this.activeColor,
  this.inactiveColor,
  this.size = 24.0,
  this.tooltip,
});