onGroupProfileUpdated static method
void
onGroupProfileUpdated(
- dynamic groupJid
Implementation
static void onGroupProfileUpdated(groupJid) {
LogMessage.d("flutter GroupProfileUpdated", groupJid.toString());
if (Get.isRegistered<ChatController>(tag: controllerTag)) {
Get.find<ChatController>(tag: controllerTag)
.onGroupProfileUpdated(groupJid);
}
if (Get.isRegistered<DashboardController>()) {
Get.find<DashboardController>().onGroupProfileUpdated(groupJid);
}
if (Get.isRegistered<GroupInfoController>()) {
Get.find<GroupInfoController>().onGroupProfileUpdated(groupJid);
}
}