onLeftFromGroup static method
void
onLeftFromGroup(
{ - required String groupJid,
- required String userJid,
})
Implementation
static void onLeftFromGroup(
{required String groupJid, required String userJid}) {
debugPrint('onLeftFromGroup $groupJid $userJid');
if (Get.isRegistered<ChatController>(tag: controllerTag)) {
Get.find<ChatController>(tag: controllerTag)
.onLeftFromGroup(groupJid: groupJid, userJid: userJid);
}
if (Get.isRegistered<GroupInfoController>()) {
Get.find<GroupInfoController>()
.onLeftFromGroup(groupJid: groupJid, userJid: userJid);
}
}