loadStatus method

void loadStatus()

requests all the data we need to get started and waits for the most important data to arrive

will be called after authentication message is received

Implementation

void loadStatus() async {
  loading = true;
  await getLibrary();
  await getPlaylists();
  await getAudioPlaylists();
  await getCurrentPresentation(quality: SLIDE_HIGHQ, doubleLoad: true);
  await getCurrentSlideIndex();

  // no "await" on these
  getCurrentAudio();
  getMessages();
  getClocks();
  loading = false;
}