HostedZoneConfig.fromXml constructor

HostedZoneConfig.fromXml(
  1. XmlElement elem
)

Implementation

factory HostedZoneConfig.fromXml(_s.XmlElement elem) {
  return HostedZoneConfig(
    comment: _s.extractXmlStringValue(elem, 'Comment'),
    privateZone: _s.extractXmlBoolValue(elem, 'PrivateZone'),
  );
}