slideStatusGet method

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

slideStatusGet -> /v1/status/slide

Requests the current/next slide text and image UUIDs.

RESPONSE 200:

The response was processed successfully.

content-type: application/json

schema:

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

Implementation

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

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