unblockedThisUser method
void
unblockedThisUser(
- 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);
}
}