stageMessageShow method

Future<bool> stageMessageShow(
  1. String postBody
)
inherited

stageMessageShow -> /v1/stage/message

Shows the specified stage message on the configured stage screen.

PARAMETERS

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

Example:

"Your message here"

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> stageMessageShow(String postBody) async {
  String url = '/v1/stage/message';

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