MessageInput constructor
const
MessageInput({
- Key? key,
- String hintText = ' Join the chat!',
- PreferredSizeWidget? bottom,
- required dynamic onSend(),
- required TextEditingController textController,
Implementation
const MessageInput({
Key? key,
this.hintText = ' Join the chat!',
this.bottom,
required this.onSend,
required this.textController,
}) : super(key: key);