ErrorRef constructor

ErrorRef({
  1. String? kind,
  2. String? message,
  3. String? id,
})

Implementation

ErrorRef({
  this.kind,
  this.message,
  super.id,
});