saveWebhookDestination method
POST /{version}/webhooks/destinations
Implementation
Future<Object?> saveWebhookDestination(
{Map<String, Object?>? query,
Object? body,
Map<String, String>? headers}) {
return transport.send(
route: '/{version}/webhooks/destinations',
method: 'POST',
query: query,
body: body,
headers: headers,
pathParams: null,
);
}