triggerNext method

Future<bool> triggerNext()
inherited

triggerNext -> /v1/trigger/next

Triggers the next cue or item in the currently active playlist or library.

RESPONSE 204:

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

content-type: NONE

Implementation

Future<bool> triggerNext() async {
  String url = '/v1/trigger/next';

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