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