HostedZoneSummary.fromXml constructor
HostedZoneSummary.fromXml(
- XmlElement elem
Implementation
factory HostedZoneSummary.fromXml(_s.XmlElement elem) {
return HostedZoneSummary(
hostedZoneId: _s.extractXmlStringValue(elem, 'HostedZoneId')!,
name: _s.extractXmlStringValue(elem, 'Name')!,
owner: HostedZoneOwner.fromXml(_s.extractXmlChild(elem, 'Owner')!),
);
}