getAppsNavigation method
Future<DynamiteResponse<NavigationGetAppsNavigationResponseApplicationJson, void> >
getAppsNavigation({
Get the apps 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 to0
.oCSAPIRequest
Required to be true for the API request to pass. Defaults totrue
.
Status codes:
- 200: Apps navigation returned
- 304: No apps navigation changed
See:
- getAppsNavigationRaw for an experimental operation that returns a DynamiteRawResponse that can be serialized.
Implementation
Future<DynamiteResponse<NavigationGetAppsNavigationResponseApplicationJson, void>> getAppsNavigation({
int? absolute,
bool? oCSAPIRequest,
}) async {
final rawResponse = getAppsNavigationRaw(
absolute: absolute,
oCSAPIRequest: oCSAPIRequest,
);
return rawResponse.future;
}