createResponse method
Creates a response to this approval request.
Implementation
FunctionApprovalResponseContent createResponse(
bool approved, [
String? reason,
]) =>
FunctionApprovalResponseContent(
id: id,
approved: approved,
functionCall: functionCall,
reason: reason,
);