stageMessageGet method

Future<Map<String, dynamic>> stageMessageGet()
inherited

stageMessageGet -> /v1/stage/message

Requests the currently active stage message.

RESPONSE 200:

The response was processed successfully.

content-type: application/json

schema:

{
  "type": "string",
  "required": []
}

Implementation

Future<Map<String, dynamic>> stageMessageGet() async {
  String url = '/v1/stage/message';

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