ListProjectGrantsRequest constructor
ListProjectGrantsRequest({
- String? projectId,
- ListQuery? query,
- 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;
}