Issue constructor

Issue(
  1. String level,
  2. String message,
  3. String path,
  4. int line,
  5. int column,
  6. String name,
)

Implementation

Issue(
  this.level,
  this.message,
  this.path,
  this.line,
  this.column,
  this.name,
);