getExecution method
Get Execution
Get a function execution log by its unique ID.
Implementation
Future<req.Response> getExecution(
{required String functionId, required String executionId}) {
final String path = '/functions/{functionId}/executions/{executionId}'
.replaceAll(RegExp('{functionId}'), functionId)
.replaceAll(RegExp('{executionId}'), executionId);
final Map<String, dynamic> params = {};
final Map<String, String> headers = {
'content-type': 'application/json',
};
return client.call(HttpMethod.get,
path: path, params: params, headers: headers);
}