transportAutoAdvanceCancel method

Future<bool> transportAutoAdvanceCancel(
  1. String layer
)
inherited

transportAutoAdvanceCancel -> /v1/transport/{layer}/auto_advance

Cancels the auto-advance for the specified layer (presentation, announcement).

PARAMETERS

layer (required) : The layer to perform the transport operation on

RESPONSE 204:

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

content-type: NONE

Implementation

Future<bool> transportAutoAdvanceCancel(String layer) async {
  String url = '/v1/transport/$layer/autoAdvance';

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