triggerMediaNext method

Future<bool> triggerMediaNext()
inherited

triggerMediaNext -> /v1/trigger/media/next

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

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