UpdateWebhookOutput.fromJson constructor

UpdateWebhookOutput.fromJson(
  1. Map<String, dynamic> json
)

Implementation

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