FilterAction.fromJson constructor
FilterAction.fromJson(
- Map json_
Implementation
FilterAction.fromJson(core.Map json_)
: this(
addLabelIds:
(json_['addLabelIds'] as core.List?)
?.map((value) => value as core.String)
.toList(),
forward: json_['forward'] as core.String?,
removeLabelIds:
(json_['removeLabelIds'] as core.List?)
?.map((value) => value as core.String)
.toList(),
);