presentationGetActive method

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

presentationGetActive -> /v1/presentation/current

Requests the details of the currently active presentation.

RESPONSE 200:

The request was processed successfully.

content-type: application/json

schema:

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

Implementation

Future<Map<String, dynamic>> presentationGetActive() async {
  String url = '/v1/presentation/current';

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