McpError constructor

const McpError({
  1. required int? code,
  2. required String message,
  3. required String type,
})

Implementation

const McpError({
  required this.code,
  required this.message,
  required this.type,
});