SyncConfigurationAsync can't be found?

Hi,

For some reason SyncConfigurationAsync can’t be found? As far as I read in the documantation I need to call it first before I can do any other calls?

Hi TheKingNuro,

Thanks for reaching out! Is your SyncConfigurationAsync within an async method? For example:

    async Task StartAsync()
    {
        await EconomyService.Instance.Configuration.SyncConfigurationAsync();
    }

Randy