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;
}