userCameOnline static method

void userCameOnline(
  1. String jid
)

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);
  }
}