textDiagnosticStyleKey function

String textDiagnosticStyleKey(
  1. TextDiagnosticSeverity severity
)

Implementation

String textDiagnosticStyleKey(TextDiagnosticSeverity severity) {
  return switch (severity) {
    TextDiagnosticSeverity.error => textDiagnosticErrorDecorationKey,
    TextDiagnosticSeverity.warning => textDiagnosticWarningDecorationKey,
    TextDiagnosticSeverity.info => textDiagnosticInfoDecorationKey,
    TextDiagnosticSeverity.hint => textDiagnosticHintDecorationKey,
  };
}