ChatInputWidget constructor

const ChatInputWidget({
  1. Key? key,
  2. required OnSendPressed? onSendPressed,
  3. required void onAttachmentPressed()?,
  4. Message? replyMessage,
  5. void unsetReplyMessage()?,
})

Internal use only.

Implementation

const ChatInputWidget(
    {super.key,
    required this.onSendPressed,
    required this.onAttachmentPressed,
    this.replyMessage,
    this.unsetReplyMessage});