ProjectGrantQuery constructor

ProjectGrantQuery({
  1. GrantProjectNameQuery? projectNameQuery,
  2. 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;
}