QueueConfigurationDeprecated.fromXml constructor

QueueConfigurationDeprecated.fromXml(
  1. XmlElement? xml
)

Implementation

QueueConfigurationDeprecated.fromXml(XmlElement? xml) {
  event = getProp(xml, 'Event')?.innerText;
  events = getProp(xml, 'Events')?.innerText;
  id = getProp(xml, 'Id')?.innerText;
  queue = getProp(xml, 'Queue')?.innerText;
}