ByeRequest.fromXML constructor
ByeRequest.fromXML(
- String xmlSTR
Implementation
factory ByeRequest.fromXML(String xmlSTR) {
final document = XmlDocument.parse(xmlSTR);
String messageID = document.rootElement.attributes
.firstWhere((p0) => p0.name.toString() == "messageID")
.value;
return ByeRequest(messageID: int.parse(messageID));
}