RoutingRule.fromXml constructor
RoutingRule.fromXml(
- XmlElement? xml
Implementation
RoutingRule.fromXml(XmlElement? xml) {
condition = Condition.fromXml(getProp(xml, 'Condition'));
redirect = Redirect.fromXml(getProp(xml, 'Redirect'));
}