send method

void send(
  1. String v
)

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();
  }
}