unblockedThisUser method

void unblockedThisUser(
  1. String jid
)

Implementation

void unblockedThisUser(String jid) {
  mirrorFlyLog("unblockedThisUser", jid.toString());
  /*if (Get.isRegistered<DashboardController>()) {
    Get.find<DashboardController>().unblockedThisUser(jid);
  }*/
  if (Get.isRegistered<ChatController>()) {
    Get.find<ChatController>().unblockedThisUser(jid);
  }
  if (Get.isRegistered<ChatInfoController>()) {
    Get.find<ChatInfoController>().unblockedThisUser(jid);
  }
  if (Get.isRegistered<GroupInfoController>()) {
    Get.find<GroupInfoController>().unblockedThisUser(jid);
  }
  if (Get.isRegistered<ContactController>()) {
    Get.find<ContactController>().unblockedThisUser(jid);
  }
  if (Get.isRegistered<AddParticipantsController>()) {
    Get.find<AddParticipantsController>().unblockedThisUser(jid);
  }
}