SupportedOperation.fromXml constructor

SupportedOperation.fromXml(
  1. XmlElement elem
)

Implementation

factory SupportedOperation.fromXml(_s.XmlElement elem) {
  return SupportedOperation(
    operationName: _s.extractXmlStringValue(elem, 'OperationName'),
  );
}