userUpdatedHisProfile method

void userUpdatedHisProfile(
  1. String jid
)

Implementation

void userUpdatedHisProfile(String jid) {
  mirrorFlyLog("userUpdatedHisProfile", jid.toString());

  if (Get.isRegistered<ChatController>()) {
    Get.find<ChatController>().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<CallController>()) {
    Get.find<CallController>().userUpdatedHisProfile(jid);
  }
  if (Get.isRegistered<CallTimeoutController>()) {
    Get.find<CallTimeoutController>().userUpdatedHisProfile(jid);
  }
}