statusScreensGet method

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

statusScreensGet -> /v1/status/screens

Requests the details of all configured screens.

RESPONSE 200:

The request was processed successfully.

content-type: application/json

schema:

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

Implementation

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

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