fromXml static method
Implementation
static TriggerConditionModel? fromXml(WidgetModel parent, XmlElement e, {String? when})
{
TriggerConditionModel condition = TriggerConditionModel(
parent,
when : Xml.get(node: e, tag: 'when'),
call : Xml.get(node: e, tag: 'call'),
);
return condition;
}