triggerAudioNext method

Future<bool> triggerAudioNext()
inherited

triggerAudioNext -> /v1/trigger/audio/next

Triggers the next item in the currently active audio playlist.

RESPONSE 204:

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

content-type: NONE

Implementation

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

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