sendNotification abstract method

Future<void> sendNotification({
  1. required String method,
  2. required Map<String, dynamic> params,
})

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,
});