ServiceEndpoint.fromXml constructor

ServiceEndpoint.fromXml(
  1. XmlElement elem
)

Implementation

factory ServiceEndpoint.fromXml(_s.XmlElement elem) {
  return ServiceEndpoint(
    endpoint: _s.extractXmlStringValue(elem, 'Endpoint'),
  );
}