GoogleAdsSearchads360V23CommonEventAttribute.fromJson constructor

GoogleAdsSearchads360V23CommonEventAttribute.fromJson(
  1. Map json_
)

Implementation

GoogleAdsSearchads360V23CommonEventAttribute.fromJson(core.Map json_)
  : this(
      event: json_['event'] as core.String?,
      eventDateTime: json_['eventDateTime'] as core.String?,
      itemAttribute: (json_['itemAttribute'] as core.List?)
          ?.map(
            (value) =>
                GoogleAdsSearchads360V23CommonEventItemAttribute.fromJson(
                  value as core.Map<core.String, core.dynamic>,
                ),
          )
          .toList(),
    );