RoutingRule.fromXml constructor

RoutingRule.fromXml(
  1. XmlElement? xml
)

Implementation

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