GoogleCloudRetailV2UserEventInlineSource.fromJson constructor

GoogleCloudRetailV2UserEventInlineSource.fromJson(
  1. Map json_
)

Implementation

GoogleCloudRetailV2UserEventInlineSource.fromJson(core.Map json_)
    : this(
        userEvents: (json_['userEvents'] as core.List?)
            ?.map((value) => GoogleCloudRetailV2UserEvent.fromJson(
                value as core.Map<core.String, core.dynamic>))
            .toList(),
      );