ListProjectGrantMembersRequest constructor
ListProjectGrantMembersRequest({
- String? projectId,
- String? grantId,
- ListQuery? query,
- Iterable<
SearchQuery> ? queries,
Implementation
factory ListProjectGrantMembersRequest({
$core.String? projectId,
$core.String? grantId,
$2.ListQuery? query,
$core.Iterable<$10.SearchQuery>? queries,
}) {
final result = create();
if (projectId != null) result.projectId = projectId;
if (grantId != null) result.grantId = grantId;
if (query != null) result.query = query;
if (queries != null) result.queries.addAll(queries);
return result;
}