ReplicationRuleFilter.fromXml constructor

ReplicationRuleFilter.fromXml(
  1. XmlElement? xml
)

Implementation

ReplicationRuleFilter.fromXml(XmlElement? xml) {
  and = ReplicationRuleAndOperator.fromXml(getProp(xml, 'And'));
  prefix = getProp(xml, 'Prefix')?.text;
  tag = Tag.fromXml(getProp(xml, 'Tag'));
}