ErrorEventInit constructor

ErrorEventInit({
  1. String? message,
  2. String? filename,
  3. num? lineno,
  4. num? colno,
  5. dynamic error,
  6. bool? bubbles,
  7. bool? cancelable,
  8. bool? composed,
})

Implementation

factory ErrorEventInit({
  _i2.String? message,
  _i2.String? filename,
  _i2.num? lineno,
  _i2.num? colno,
  _i2.dynamic error,
  _i2.bool? bubbles,
  _i2.bool? cancelable,
  _i2.bool? composed,
}) =>
    ErrorEventInit._(
      message: message,
      filename: filename,
      lineno: lineno,
      colno: colno,
      error: error,
      bubbles: bubbles,
      cancelable: cancelable,
      composed: composed,
    );