JSError constructor

JSError(
  1. String? name,
  2. String message, {
  3. String? cause,
  4. String? fileName,
  5. String? lineNumber,
  6. String? columnNumber,
  7. String? stack,
})

Implementation

JSError(this.name, this.message,
    {this.cause,
    this.fileName,
    this.lineNumber,
    this.columnNumber,
    this.stack});