TopicConfigurationDeprecated.fromXml constructor

TopicConfigurationDeprecated.fromXml(
  1. XmlElement? xml
)

Implementation

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