ToolCallingSessionDestroyRequest constructor

ToolCallingSessionDestroyRequest({
  1. Int64? sessionHandle,
})

Implementation

factory ToolCallingSessionDestroyRequest({
  $fixnum.Int64? sessionHandle,
}) {
  final result = create();
  if (sessionHandle != null) result.sessionHandle = sessionHandle;
  return result;
}