MissingCustomsException.fromXml constructor

MissingCustomsException.fromXml(
  1. XmlElement elem
)

Implementation

factory MissingCustomsException.fromXml(_s.XmlElement elem) {
  return MissingCustomsException(
    message: _s.extractXmlStringValue(elem, 'message'),
  );
}