ListProjectGrantChangesRequest constructor

ListProjectGrantChangesRequest({
  1. ChangeQuery? query,
  2. String? projectId,
  3. String? grantId,
})

Implementation

factory ListProjectGrantChangesRequest({
  $3.ChangeQuery? query,
  $core.String? projectId,
  $core.String? grantId,
}) {
  final result = create();
  if (query != null) result.query = query;
  if (projectId != null) result.projectId = projectId;
  if (grantId != null) result.grantId = grantId;
  return result;
}