TUpdateWebhookEndpointInput.fromJson constructor

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

Implementation

factory TUpdateWebhookEndpointInput.fromJson(Map<String, dynamic> json) =>
    TUpdateWebhookEndpointInput(
        body: TUpdateWebhookEndpointBody.fromJson(
            json['body'] as Map<String, dynamic>));