Diagnostic constructor

Diagnostic({
  1. String? kind,
  2. String? location,
  3. String? message,
})

Implementation

Diagnostic({
  this.kind,
  this.location,
  this.message,
});