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