ListProjectGrantsRequest constructor
ListProjectGrantsRequest({
- String? projectId,
- ListQuery? query,
- Iterable<
ProjectGrantQuery> ? queries,
Implementation
factory ListProjectGrantsRequest({
$core.String? projectId,
$8.ListQuery? query,
$core.Iterable<$18.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;
}