MessageInput constructor

const MessageInput({
  1. Key? key,
  2. String hintText = ' Join the chat!',
  3. PreferredSizeWidget? bottom,
  4. required dynamic onSend(),
  5. required TextEditingController textController,
})

Implementation

const MessageInput({
  Key? key,
  this.hintText = ' Join the chat!',
  this.bottom,
  required this.onSend,
  required this.textController,
}) : super(key: key);