presentationTriggerCue method

Future<bool> presentationTriggerCue(
  1. String uuid,
  2. int index
)
inherited

presentationTriggerCue -> /v1/presentation/{uuid}/trigger/{index}

Triggers the specified cue inside the specified presentation.

PARAMETERS

uuid : The UUID of the presentation to look up.

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

index : The index of the cue to use. Respects the selected arrangement of cues.

  • Example (index): 0

RESPONSE 204:

The request was processed successfully. There is no response body.

content-type: NONE

Implementation

Future<bool> presentationTriggerCue(String uuid, int index) async {
  String url = '/v1/presentation/$uuid/trigger/$index';

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