ReplicationConfiguration.fromXml constructor

ReplicationConfiguration.fromXml(
  1. XmlElement xml
)

Implementation

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