ReplicationTime.fromXml constructor

ReplicationTime.fromXml(
  1. XmlElement? xml
)

Implementation

ReplicationTime.fromXml(XmlElement? xml) {
  status = getProp(xml, 'Status')?.text;
  time = ReplicationTimeValue.fromXml(getProp(xml, 'Time'));
}