userWentOffline method

void userWentOffline(
  1. String jid
)

Implementation

void userWentOffline(String jid) {
  if (Get.isRegistered<ChatController>()) {
    Get.find<ChatController>().userWentOffline(jid);
  }
  if (Get.isRegistered<ChatInfoController>()) {
    Get.find<ChatInfoController>().userWentOffline(jid);
  }
}