ListProjectGrantMembersRequest constructor

ListProjectGrantMembersRequest({
  1. String? projectId,
  2. String? grantId,
  3. ListQuery? query,
  4. 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;
}