GoogleAdsSearchads360V23CommonChainSet.fromJson constructor

GoogleAdsSearchads360V23CommonChainSet.fromJson(
  1. Map json_
)

Implementation

GoogleAdsSearchads360V23CommonChainSet.fromJson(core.Map json_)
  : this(
      chains: (json_['chains'] as core.List?)
          ?.map(
            (value) => GoogleAdsSearchads360V23CommonChainFilter.fromJson(
              value as core.Map<core.String, core.dynamic>,
            ),
          )
          .toList(),
      relationshipType: json_['relationshipType'] as core.String?,
    );