ObjectLockConfiguration.fromXml constructor

ObjectLockConfiguration.fromXml(
  1. XmlElement? xml
)

Implementation

ObjectLockConfiguration.fromXml(XmlElement? xml) {
  objectLockEnabled = getProp(xml, 'ObjectLockEnabled')?.text;
  rule = ObjectLockRule.fromXml(getProp(xml, 'Rule'));
}