ReplicationTimeValue.fromXml constructor

ReplicationTimeValue.fromXml(
  1. XmlElement? xml
)

Implementation

ReplicationTimeValue.fromXml(XmlElement? xml) {
  minutes = int.tryParse(getProp(xml, 'Minutes')?.text ?? "0");
}