triggerPrevious method

Future<bool> triggerPrevious()
inherited

triggerPrevious -> /v1/trigger/previous

Triggers the previous 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> triggerPrevious() async {
  String url = '/v1/trigger/previous';

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