ListProjectGrantsRequest constructor

ListProjectGrantsRequest({
  1. String? projectId,
  2. ListQuery? query,
  3. Iterable<ProjectGrantQuery>? queries,
})

Implementation

factory ListProjectGrantsRequest({
  $core.String? projectId,
  $2.ListQuery? query,
  $core.Iterable<$11.ProjectGrantQuery>? queries,
}) {
  final result = create();
  if (projectId != null) result.projectId = projectId;
  if (query != null) result.query = query;
  if (queries != null) result.queries.addAll(queries);
  return result;
}