HostedZoneLimit.fromXml constructor
HostedZoneLimit.fromXml(
- XmlElement elem
Implementation
factory HostedZoneLimit.fromXml(_s.XmlElement elem) {
return HostedZoneLimit(
type: _s.extractXmlStringValue(elem, 'Type')!.toHostedZoneLimitType(),
value: _s.extractXmlIntValue(elem, 'Value')!,
);
}