ErrorDocument.fromXml constructor

ErrorDocument.fromXml(
  1. XmlElement elem
)

Implementation

factory ErrorDocument.fromXml(_s.XmlElement elem) {
  return ErrorDocument(
    key: _s.extractXmlStringValue(elem, 'Key')!,
  );
}