triggerAudioPrevious method

Future<bool> triggerAudioPrevious()
inherited

triggerAudioPrevious -> /v1/trigger/audio/previous

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

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