buildTasksParent method

String buildTasksParent({
  1. required String projectId,
  2. required String locationId,
  3. required String queueId,
})

Builds the parent resource path for Cloud Tasks operations.

Format: projects/{projectId}/locations/{locationId}/queues/{queueId}

Implementation

String buildTasksParent({
  required String projectId,
  required String locationId,
  required String queueId,
}) {
  return 'projects/$projectId/locations/$locationId/queues/$queueId';
}