HostedZoneLimit.fromXml constructor

HostedZoneLimit.fromXml(
  1. XmlElement elem
)

Implementation

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