NotificationConfigurationDeprecated.fromXml constructor

NotificationConfigurationDeprecated.fromXml(
  1. XmlElement? xml
)

Implementation

NotificationConfigurationDeprecated.fromXml(XmlElement? xml) {
  cloudFunctionConfiguration = CloudFunctionConfiguration.fromXml(
      getProp(xml, 'CloudFunctionConfiguration'));
  queueConfiguration = QueueConfigurationDeprecated.fromXml(
      getProp(xml, 'QueueConfiguration'));
  topicConfiguration = TopicConfigurationDeprecated.fromXml(
      getProp(xml, 'TopicConfiguration'));
}