ReplicationTimeValue.fromXml constructor
ReplicationTimeValue.fromXml(
- XmlElement? xml
Implementation
ReplicationTimeValue.fromXml(XmlElement? xml) {
// Check if the 'Minutes' property exists and is not null before parsing
final minutesValue = getProp(xml, 'Minutes')?.value;
minutes = minutesValue != null ? int.tryParse(minutesValue) : null;
}