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