onGroupProfileUpdated method

void onGroupProfileUpdated(
  1. dynamic groupJid
)

Implementation

void onGroupProfileUpdated(groupJid) {
  mirrorFlyLog("flutter GroupProfileUpdated", groupJid.toString());
  if (Get.isRegistered<ChatController>()) {
    Get.find<ChatController>().onGroupProfileUpdated(groupJid);
  }
  if (Get.isRegistered<DashboardController>()) {
    Get.find<DashboardController>().onGroupProfileUpdated(groupJid);
  }
  if (Get.isRegistered<GroupInfoController>()) {
    Get.find<GroupInfoController>().onGroupProfileUpdated(groupJid);
  }
}