McpNotification.fromJson constructor
Create notification from JSON map
Implementation
factory McpNotification.fromJson(Map<String, dynamic> json) {
return McpNotification(
method: json['method'] as String,
params: json['params'] as Map<String, dynamic>?,
);
}