TopicConfigurationDeprecated.fromXml constructor

TopicConfigurationDeprecated.fromXml(
  1. XmlElement? xml
)

Implementation

TopicConfigurationDeprecated.fromXml(XmlElement? xml) {
  event = getProp(xml, 'Event')?.innerText;
  events = getProp(xml, 'Events')?.innerText;
  id = getProp(xml, 'Id')?.innerText;
  topic = getProp(xml, 'Topic')?.innerText;
}