userUpdatedHisProfile static method

void userUpdatedHisProfile(
  1. String jid
)

Implementation

static void userUpdatedHisProfile(String jid) {
  LogMessage.d("userUpdatedHisProfile", jid.toString());

  if (Get.isRegistered<ChatController>(tag: controllerTag)) {
    Get.find<ChatController>(tag: controllerTag).userUpdatedHisProfile(jid);
  }
  if (Get.isRegistered<DashboardController>()) {
    Get.find<DashboardController>().userUpdatedHisProfile(jid);
  }
  if (Get.isRegistered<ForwardChatController>()) {
    Get.find<ForwardChatController>().userUpdatedHisProfile(jid);
  }
  if (Get.isRegistered<ArchivedChatListController>()) {
    Get.find<ArchivedChatListController>().userUpdatedHisProfile(jid);
  }
  /*if (Get.isRegistered<RecentChatSearchController>()) {
    Get.find<RecentChatSearchController>().userUpdatedHisProfile(jid);
  }*/
  if (Get.isRegistered<ContactController>()) {
    Get.find<ContactController>().userUpdatedHisProfile(jid);
  }
  if (Get.isRegistered<AddParticipantsController>()) {
    Get.find<AddParticipantsController>().userUpdatedHisProfile(jid);
  }
  if (Get.isRegistered<ChatInfoController>()) {
    Get.find<ChatInfoController>().userUpdatedHisProfile(jid);
  }
  if (Get.isRegistered<StarredMessagesController>()) {
    Get.find<StarredMessagesController>().userUpdatedHisProfile(jid);
  }
  if (Get.isRegistered<BlockedListController>()) {
    Get.find<BlockedListController>().userUpdatedHisProfile(jid);
  }
  if (Get.isRegistered<GroupInfoController>()) {
    Get.find<GroupInfoController>().userUpdatedHisProfile(jid);
  }
  if (Get.isRegistered<OutgoingCallController>()) {
    Get.find<OutgoingCallController>().userUpdatedHisProfile(jid);
  }
  if (Get.isRegistered<CallController>()) {
    Get.find<CallController>().userUpdatedHisProfile(jid);
  }
  if (Get.isRegistered<CallTimeoutController>()) {
    Get.find<CallTimeoutController>().userUpdatedHisProfile(jid);
  }
}