ProjectGrantQuery constructor
ProjectGrantQuery({
- GrantProjectNameQuery? projectNameQuery,
- GrantRoleKeyQuery? roleKeyQuery,
Implementation
factory ProjectGrantQuery({
GrantProjectNameQuery? projectNameQuery,
GrantRoleKeyQuery? roleKeyQuery,
}) {
final result = create();
if (projectNameQuery != null) result.projectNameQuery = projectNameQuery;
if (roleKeyQuery != null) result.roleKeyQuery = roleKeyQuery;
return result;
}