GoogleAdsSearchads360V23CommonLeadFormDeliveryMethod.fromJson constructor

GoogleAdsSearchads360V23CommonLeadFormDeliveryMethod.fromJson(
  1. Map json_
)

Implementation

GoogleAdsSearchads360V23CommonLeadFormDeliveryMethod.fromJson(core.Map json_)
  : this(
      webhook: json_.containsKey('webhook')
          ? GoogleAdsSearchads360V23CommonWebhookDelivery.fromJson(
              json_['webhook'] as core.Map<core.String, core.dynamic>,
            )
          : null,
    );