themeSlideGet method

Future<Map<String, dynamic>> themeSlideGet(
  1. String id, {
  2. String? themeSlide,
})
inherited

themeSlideGet -> /v1/theme/{id}/slides/{theme_slide}

Requests the details of the specified theme slide within the specified theme.

PARAMETERS

id (required) : The ID of the theme, either name or index.

  • Example (by_name): Theme Name

  • Example (by_index): 3 themeSlide (optional) : The ID of the theme slide, either name, index or UUID.

  • Example (by_name): Theme Slide Name

  • Example (by_index): 3

  • Example (by_uuid): 3C39C433-5C18-4F51-B357-55BB870227C4

RESPONSE 200:

The request was processed successfully.

content-type: application/json

schema:

{
  "type": "object",
  "required": [
    "id"
  ]
}

Implementation

Future<Map<String, dynamic>> themeSlideGet(String id, {String? themeSlide}) async {
  String url = '/v1/theme/$id/slides/$themeSlide';

  return await call('get', url, httpAccept: 'application/json');
}