McpApprovalResponse constructor

const McpApprovalResponse({
  1. required String approvalRequestId,
  2. required bool approve,
  3. String? id,
  4. String? reason,
})

Implementation

const McpApprovalResponse({
  required this.approvalRequestId,
  required this.approve,
  this.id,
  this.reason,
}) : super('mcp_approval_response');