MessageInput constructor

MessageInput({
  1. Key? key,
  2. required TextEditingController textController,
  3. required dynamic sendCallback(
    1. String text
    ),
  4. dynamic typingCallback(
    1. TypingEvent event
    )?,
  5. FocusNode? focusNode,
  6. int? maxLines,
})

Implementation

MessageInput(
    {Key? key,
    required this.textController,
    required this.sendCallback,
    this.typingCallback,
    this.focusNode,
    this.maxLines})
    : super(key: key);