getSettings method

Future<UserSettings> getSettings()

Get the user's settings so you can align your app's experience with what they're used to on the trakt website.

A globally unique uuid is also returned, which can be used to identify the user locally in your app if needed. However, the uuid can't be used to retrieve data from the Trakt API.

🔒 OAuth Required

Implementation

Future<UserSettings> getSettings() async {
  return await _manager._authenticatedGet<UserSettings>("users/settings");
}