JSException constructor

JSException(
  1. int line,
  2. String message, {
  3. int? column = 0,
  4. String? detailedError,
  5. String? recovery,
  6. dynamic originalError,
})

Implementation

JSException(this.line, this.message,
    {this.column = 0, this.detailedError, this.recovery, this.originalError});