onConnected static method

void onConnected(
  1. dynamic result
)

Implementation

static void onConnected(result) {
  if (Get.isRegistered<ChatController>(tag: controllerTag)) {
    Get.find<ChatController>(tag: controllerTag).onConnected();
  }
  if (Get.isRegistered<ChatInfoController>()) {
    Get.find<ChatInfoController>().onConnected();
  }
  if (Get.isRegistered<ContactSyncController>()) {
    Get.find<ContactSyncController>().onConnected();
  }
  if (Get.isRegistered<ProfileController>()) {
    Get.find<ProfileController>().onConnected();
  }
  if (Get.isRegistered<JoinCallController>()) {
    Get.find<JoinCallController>().onConnected();
  }
}