WebhookConfig.fromJson constructor

WebhookConfig.fromJson(
  1. Map json_
)

Implementation

WebhookConfig.fromJson(core.Map json_)
  : this(
      secret: json_['secret'] as core.String?,
      state: json_['state'] as core.String?,
    );