Error constructor

Error({
  1. String? kind,
  2. String? message,
  3. String? id,
  4. InstanceRef? exception,
  5. InstanceRef? stacktrace,
})

Implementation

Error({
  this.kind,
  this.message,
  super.id,
  this.exception,
  this.stacktrace,
});