SendMessage constructor

const SendMessage({
  1. Key? key,
  2. Function? onSend,
  3. ValueChanged<String>? messageCallback,
  4. Color? sendButtonColor,
  5. String? hintText,
})

Implementation

const SendMessage(
    {Key? key,
    this.onSend,
    this.messageCallback,
    this.sendButtonColor,
    this.hintText})
    : super(key: key);