McpCall constructor

const McpCall({
  1. required String id,
  2. required String name,
  3. required String arguments,
  4. required String serverLabel,
  5. McpError? error,
  6. String? output,
})

Implementation

const McpCall({
  required this.id,
  required this.name,
  required this.arguments,
  required this.serverLabel,
  this.error,
  this.output,
}) : super('mcp_call');