bool isUpdated()

node data is not ready until all profile and mixins are updated

Source

bool isUpdated() {
  if (!isSelfUpdated()) {
    return false;
  }

  if (profile is RemoteNode && !(profile as RemoteNode).isSelfUpdated()) {
    return false;
  }
  return true;
}