unblockedThisUser static method

void unblockedThisUser(
  1. String jid
)

Implementation

static void unblockedThisUser(String jid) {
  LogMessage.d("unblockedThisUser", jid.toString());
  if (Get.isRegistered<ChatController>(tag: controllerTag)) {
    Get.find<ChatController>(tag: controllerTag).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);
  }
}