stageScreensStatusGet method

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

stageScreensStatusGet -> /v1/status/stage_screens

Requests the status of the stage screens.

RESPONSE 200:

The response was processed successfully.

content-type: application/json

schema:

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

Implementation

Future<Map<String, dynamic>> stageScreensStatusGet() async {
  String url = '/v1/status/stageScreens';

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