CancelJobOutput.fromXml constructor

CancelJobOutput.fromXml(
  1. XmlElement elem
)

Implementation

factory CancelJobOutput.fromXml(_s.XmlElement elem) {
  return CancelJobOutput(
    success: _s.extractXmlBoolValue(elem, 'Success'),
  );
}