ListProjectGrantsRequest constructor

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

Implementation

factory ListProjectGrantsRequest({
  $core.String? projectId,
  $7.ListQuery? query,
  $core.Iterable<$20.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;
}