userBlockedMe method
void
userBlockedMe(
- String jid
)
Implementation
void userBlockedMe(String jid) {
mirrorFlyLog('userBlockedMe', jid.toString());
if (Get.isRegistered<DashboardController>()) {
Get.find<DashboardController>().userBlockedMe(jid);
}
if (Get.isRegistered<ChatController>()) {
Get.find<ChatController>().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);
}
}