getSettingsNavigation method

Future<DynamiteResponse<NavigationGetSettingsNavigationResponseApplicationJson, void>> getSettingsNavigation({
  1. int? absolute,
  2. bool? oCSAPIRequest,
})

Get the settings navigation.

Returns a Future containing a DynamiteResponse with the status code, deserialized body and headers. Throws a DynamiteApiException if the API call does not return an expected status code.

Parameters:

  • absolute Rewrite URLs to absolute ones. Defaults to 0.
  • oCSAPIRequest Required to be true for the API request to pass. Defaults to true.

Status codes:

  • 200: Apps navigation returned
  • 304: No apps navigation changed

See:

Implementation

Future<DynamiteResponse<NavigationGetSettingsNavigationResponseApplicationJson, void>> getSettingsNavigation({
  int? absolute,
  bool? oCSAPIRequest,
}) async {
  final rawResponse = getSettingsNavigationRaw(
    absolute: absolute,
    oCSAPIRequest: oCSAPIRequest,
  );

  return rawResponse.future;
}