JavaScriptExecutionException constructor

const JavaScriptExecutionException({
  1. required String message,
  2. String? name,
  3. String? javaScriptStackTrace,
})

Creates a JavaScript execution exception.

Implementation

const JavaScriptExecutionException({
  required this.message,
  this.name,
  this.javaScriptStackTrace,
});