CreateWebhookOutput.fromJson constructor
Implementation
factory CreateWebhookOutput.fromJson(Map<String, dynamic> json) {
return CreateWebhookOutput(
webhook: json['webhook'] != null
? Webhook.fromJson(json['webhook'] as Map<String, dynamic>)
: null,
);
}