audienceScreensStatusSet method

Future<bool> audienceScreensStatusSet(
  1. bool postBody
)
inherited

audienceScreensStatusSet -> /v1/status/audience_screens

Sets the status of the audience screens.

PARAMETERS

postBody (required) : This is the data that must be sent with this request.

RESPONSE 204:

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

content-type: NONE

Implementation

Future<bool> audienceScreensStatusSet(bool postBody) async {
  String url = '/v1/status/audienceScreens';

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