ChatInputBar constructor

const ChatInputBar({
  1. Key? key,
  2. required dynamic onSend(
    1. String
    ),
  3. required ChatTheme theme,
  4. bool isLoading = false,
  5. TextEditingController? controller,
  6. String hintText = 'Type a message...',
})

Implementation

const ChatInputBar({
  super.key,
  required this.onSend,
  required this.theme,
  this.isLoading = false,
  this.controller,
  this.hintText = 'Type a message...',
});