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