XmlParserException constructor

XmlParserException(
  1. String message, {
  2. String? buffer,
  3. int position = 0,
  4. int line = 0,
  5. int column = 0,
})

Creates a new XmlParserException.

Implementation

XmlParserException(String message,
    {this.buffer, this.position = 0, this.line = 0, this.column = 0})
    : super(message);