AeaResponseResponse.fromXML constructor

AeaResponseResponse.fromXML(
  1. String xmlSTR
)

Implementation

factory AeaResponseResponse.fromXML(String xmlSTR) {
  final document = XmlDocument.parse(xmlSTR);

  String messageName = document.rootElement.attributes
      .firstWhere((p0) => p0.name.toString() == "messageName")
      .value;
  String messageID = document.rootElement.attributes
      .firstWhere((p0) => p0.name.toString() == "messageID")
      .value;
  String result = document.rootElement.childElements.first.attributes
      .firstWhere((p0) => p0.name.toString() == "result")
      .value;

  return AeaResponseResponse(
    messageName: messageName,
    messageID: int.parse(messageID),
    result: result,
  );
}