Issue constructor

Issue({
  1. required IssueSeverity severity,
  2. required String ruleName,
  3. required String message,
  4. String? locale,
  5. String? key,
  6. String? file,
  7. int? line,
  8. String? hint,
})

Implementation

Issue({
  required this.severity,
  required this.ruleName,
  required this.message,
  this.locale,
  this.key,
  this.file,
  this.line,
  this.hint,
});