ReplicationConfiguration.fromXml constructor
ReplicationConfiguration.fromXml(
- XmlElement? xml
Implementation
ReplicationConfiguration.fromXml(XmlElement? xml) {
role = getProp(xml, 'Role')?.text;
rules = ReplicationRule.fromXml(getProp(xml, 'Rules'));
}