MCPNotification constructor

MCPNotification({
  1. String jsonrpc = '2.0',
  2. required String method,
  3. Map<String, dynamic>? params,
})

Implementation

MCPNotification({
  this.jsonrpc = '2.0',
  required this.method,
  this.params,
});