textDiagnosticLineStyleKey function

String textDiagnosticLineStyleKey(
  1. TextDiagnosticSeverity severity
)

Implementation

String textDiagnosticLineStyleKey(TextDiagnosticSeverity severity) {
  return switch (severity) {
    TextDiagnosticSeverity.error => textDiagnosticErrorLineDecorationKey,
    TextDiagnosticSeverity.warning => textDiagnosticWarningLineDecorationKey,
    TextDiagnosticSeverity.info => textDiagnosticInfoLineDecorationKey,
    TextDiagnosticSeverity.hint => textDiagnosticHintLineDecorationKey,
  };
}