userCameOnline static method
Implementation
static void userCameOnline(String jid) {
if (Get.isRegistered<ChatController>(tag: controllerTag)) {
Get.find<ChatController>(tag: controllerTag).userCameOnline(jid);
}
if (Get.isRegistered<ChatInfoController>()) {
Get.find<ChatInfoController>().userCameOnline(jid);
}
}