presentationFocusedTimelineStatus method

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

presentationFocusedTimelineStatus -> /v1/presentation/focused/timeline

Requests the current state of the focused presentation timeline.

RESPONSE 200:

The request was processed successfully.

content-type: application/json

schema:

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

Implementation

Future<Map<String, dynamic>> presentationFocusedTimelineStatus() async {
  String url = '/v1/presentation/focused/timeline';

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