SegmentSequenceStep.fromJson constructor

SegmentSequenceStep.fromJson(
  1. Map json_
)

Implementation

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