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