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