onSend method

void onSend()

Implementation

void onSend() {
  if (controller.text.trim().isNotEmpty) {
    _chatDetailBloc.add(ChatSendMessageEvent(
        type: MessageType.text, text: controller.text.trim()));
    controller.clear();
  }
}