TopicConfigurationDeprecated.fromXml constructor

TopicConfigurationDeprecated.fromXml(
  1. XmlElement? xml
)

Implementation

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