AutomationRuleCondition.fromJson constructor
AutomationRuleCondition.fromJson(
- Map json_
Implementation
AutomationRuleCondition.fromJson(core.Map json_)
: this(
targetsPresentCondition: json_.containsKey('targetsPresentCondition')
? TargetsPresentCondition.fromJson(
json_['targetsPresentCondition']
as core.Map<core.String, core.dynamic>)
: null,
);