userBlockedMe static method
void
userBlockedMe(
- String jid
)
Implementation
static void userBlockedMe(String jid) {
LogMessage.d('userBlockedMe', jid.toString());
if (Get.isRegistered<ChatController>(tag: controllerTag)) {
Get.find<ChatController>(tag: controllerTag).userBlockedMe(jid);
}
if (Get.isRegistered<ChatInfoController>()) {
Get.find<ChatInfoController>().userBlockedMe(jid);
}
if (Get.isRegistered<GroupInfoController>()) {
Get.find<GroupInfoController>().userBlockedMe(jid);
}
if (Get.isRegistered<ContactController>()) {
Get.find<ContactController>().userBlockedMe(jid);
}
if (Get.isRegistered<AddParticipantsController>()) {
Get.find<AddParticipantsController>().userBlockedMe(jid);
}
}