UpdateWebhookResult.fromJson constructor

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

Implementation

factory UpdateWebhookResult.fromJson(Map<String, dynamic> json) {
  return UpdateWebhookResult(
    webhook: Webhook.fromJson(json['webhook'] as Map<String, dynamic>),
  );
}