presentationTrigger method

Future<bool> presentationTrigger(
  1. String uuid
)
inherited

presentationTrigger -> /v1/presentation/{uuid}/trigger

Triggers the specified presentation.

PARAMETERS

uuid : The UUID of the presentation to look up.

  • Example (uuid): 3C39C433-5C18-4F51-B357-55BB870227C4

RESPONSE 204:

The request was processed successfully. There is no response body.

content-type: NONE

Implementation

Future<bool> presentationTrigger(String uuid) async {
  String url = '/v1/presentation/$uuid/trigger';

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