presentationGetSlideIndex method

Future<Map<String, dynamic>> presentationGetSlideIndex()
inherited

presentationGetSlideIndex -> /v1/presentation/slide_index

Requests the index of the current slide/cue within the currently active presentation.

RESPONSE 200:

The request was processed successfully.

content-type: application/json

schema:

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

Implementation

Future<Map<String, dynamic>> presentationGetSlideIndex() async {
  String url = '/v1/presentation/slideIndex';

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