inputWidget property
Widget
get
inputWidget
Implementation
Widget get inputWidget => CustomTypingCard(
textController: textController,
scrollController: scrollController,
onSend: () {
// Send message logic or call the function to send the message
},
onTapImageUpload: () {
// Image upload logic or call the function to upload the image
},
iconSend: const Icon(Icons.send),
hintText: 'Type a message',
);