$ScriptError constructor

$ScriptError({
  1. String? column,
  2. String? errorCode,
  3. String? errorMessage,
  4. String? line,
})

Implementation

$ScriptError({
  this.column,
  this.errorCode,
  this.errorMessage,
  this.line,
});