ByeResponse.fromXML constructor

ByeResponse.fromXML(
  1. String xmlSTR
)

Implementation

factory ByeResponse.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 ByeResponse(
    messageName: messageName,
    messageID: int.parse(messageID),
    result: result,
  );
}