label property

String get label

Human-readable display name.

Implementation

String get label => switch (this) {
      IssueCategory.correctness => 'Correctness',
      IssueCategory.runtimeSafety => 'Runtime Safety',
      IssueCategory.compatibility => 'Compatibility',
      IssueCategory.deprecatedApi => 'Deprecated API',
      IssueCategory.performance => 'Performance',
      IssueCategory.maintainability => 'Maintainability',
      IssueCategory.style => 'Style',
      IssueCategory.codeQuality => 'Code Quality',
      IssueCategory.unknown => 'Unknown',
    };