sandboxItemFireWebhookPost method

Future<Response<SandboxItemFireWebhookResponse>> sandboxItemFireWebhookPost({
  1. required SandboxItemFireWebhookRequest? body,
})

Fire a test webhook

Implementation

Future<chopper.Response<SandboxItemFireWebhookResponse>>
    sandboxItemFireWebhookPost(
        {required SandboxItemFireWebhookRequest? body}) {
  generatedMapping.putIfAbsent(SandboxItemFireWebhookResponse,
      () => SandboxItemFireWebhookResponse.fromJsonFactory);

  return _sandboxItemFireWebhookPost(body: body);
}