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