ServiceEndpoint.fromXml constructor
ServiceEndpoint.fromXml(
- XmlElement elem
Implementation
factory ServiceEndpoint.fromXml(_s.XmlElement elem) {
return ServiceEndpoint(
arn: _s.extractXmlStringValue(elem, 'Arn'),
endpoint: _s.extractXmlStringValue(elem, 'Endpoint'),
);
}