transportSkipBackward method

Future<bool> transportSkipBackward(
  1. String layer,
  2. int time
)
inherited

transportSkipBackward -> /v1/transport/{layer}/skip_backward/{time}

Moves backward in the content on the specified layer by the specified number of seconds (presentation, announcement, audio).

PARAMETERS

layer : The layer to perform the transport operation on

  • Should be one of: presentation, announcement, audio

time : The number of seconds to skip

Example: 15

RESPONSE 204:

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

content-type: NONE

RESPONSE 400:

The request was not valid.

content-type: ``

Implementation

Future<bool> transportSkipBackward(String layer, int time) async {
  String url = '/v1/transport/$layer/skipBackward/$time';

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