sendNotification abstract method
Sends a notification to the LSP server without waiting for a response. This is used for asynchronous operations that inform the server of changes.
Implementation
Future<void> sendNotification({
required String method,
required Map<String, dynamic> params,
});