send method
Implementation
void send(String v) {
if (v.trim().isNotEmpty) {
chatBoxController.clear();
widget.provider.sendMessage(v);
if (widget.refocusOnSend) {
chatBoxFocus.requestFocus();
}
}
if (!widget.refocusOnSend) {
chatBoxFocus.unfocus();
}
}