XmlEventDecoder constructor

XmlEventDecoder({
  1. XmlEntityMapping? entityMapping,
  2. bool validateNesting = false,
  3. bool validateDocument = false,
  4. bool withLocation = false,
  5. bool withParent = false,
})

Implementation

XmlEventDecoder({
  XmlEntityMapping? entityMapping,
  this.validateNesting = false,
  this.validateDocument = false,
  this.withLocation = false,
  this.withParent = false,
}) : entityMapping = entityMapping ?? defaultEntityMapping;