Diagnostics constructor

Diagnostics({
  1. String? code,
  2. String? severity,
  3. String? type,
  4. Location? location,
  5. String? problemMessage,
  6. String? correctionMessage,
  7. String? documentation,
})

Implementation

Diagnostics(
    {this.code,
      this.severity,
      this.type,
      this.location,
      this.problemMessage,
      this.correctionMessage,
      this.documentation});