SegmentSequenceStep.fromJson constructor
SegmentSequenceStep.fromJson(
- Map json_
Implementation
SegmentSequenceStep.fromJson(core.Map json_)
: this(
matchType: json_['matchType'] as core.String?,
orFiltersForSegment: (json_['orFiltersForSegment'] as core.List?)
?.map((value) => OrFiltersForSegment.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList(),
);