XmlTagException constructor

XmlTagException(
  1. String message, {
  2. String? expectedName,
  3. String? actualName,
  4. String? buffer,
  5. int? position,
})

Creates a new XmlTagException.

Implementation

XmlTagException(
  super.message, {
  this.expectedName,
  this.actualName,
  this.buffer,
  this.position,
});