clearMessage method

dynamic clearMessage()

Implementation

clearMessage() {
  if (profile.jid.checkNull().isNotEmpty) {
    messageController.text = Constants.emptyString;
    Mirrorfly.saveUnsentMessage(profile.jid.checkNull(), Constants.emptyString);
    ReplyHashMap.saveReplyId(profile.jid.checkNull(), Constants.emptyString);
  }
}