Webhook_ constructor
Webhook_({
- WebhookId_? webhookId,
- String? topicName,
- WebhookDestination_? destination,
Implementation
factory Webhook_({
WebhookId_? webhookId,
$core.String? topicName,
WebhookDestination_? destination,
}) {
final $result = create();
if (webhookId != null) {
$result.webhookId = webhookId;
}
if (topicName != null) {
$result.topicName = topicName;
}
if (destination != null) {
$result.destination = destination;
}
return $result;
}