notifyInitialized method

Future<void> notifyInitialized({
  1. Map<String, String> headers = const <String, String>{},
})

Sends the MCP notifications/initialized lifecycle notification.

Implementation

Future<void> notifyInitialized({
  Map<String, String> headers = const <String, String>{},
}) async {
  await notification('notifications/initialized', headers: headers);
}