QueueConfiguration.fromXml constructor

QueueConfiguration.fromXml(
  1. XmlElement? xml
)

Implementation

QueueConfiguration.fromXml(XmlElement? xml) {
  events = getProp(xml, 'Events')?.text;
  filter = NotificationConfigurationFilter.fromXml(getProp(xml, 'Filter'));
  id = getProp(xml, 'Id')?.text;
  queueArn = getProp(xml, 'QueueArn')?.text;
}