triggerCue method

Future<bool> triggerCue(
  1. int index
)
inherited

triggerCue -> /v1/trigger/cue/{index}

Triggers the specified cue in the currently active playlist item.

PARAMETERS

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> triggerCue(int index) async {
  String url = '/v1/trigger/cue/$index';

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