public static bool IsInitialized { get; }
Gets if the leaderboard manager is initialized or not, mostly if the save has been loaded. This happens on [RuntimeInitializeOnLoadMethod(RuntimeInitializeLoadType.BeforeSceneLoad)]
so it should be initialized before the you need to access it.
private void OnEnable()
{
Debug.Log(LeaderboardManager.IsInitialized);
}