VoiceInputBar constructor

const VoiceInputBar({
  1. Key? key,
  2. required dynamic onSendMessage(
    1. VoiceMessageData
    ),
  3. bool isLoading = false,
})

Implementation

const VoiceInputBar({
  super.key,
  required this.onSendMessage,
  this.isLoading = false,
});