triggerMediaPrevious method

Future<bool> triggerMediaPrevious()
inherited

triggerMediaPrevious -> /v1/trigger/media/previous

Triggers the previous item in the currently active media playlist.

RESPONSE 204:

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

content-type: NONE

Implementation

Future<bool> triggerMediaPrevious() async {
  String url = '/v1/trigger/media/previous';

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