ErrorEvent.internal constructor

ErrorEvent.internal({
  1. int? colno,
  2. Object? error,
  3. String? filename,
  4. int? lineno,
  5. String? message,
})

Internal constructor. Not part of dart:html.

Implementation

ErrorEvent.internal({
  this.colno,
  this.error,
  this.filename,
  this.lineno,
  this.message,
}) : super.internal('error');