RemoveProjectRoleRequest constructor

RemoveProjectRoleRequest({
  1. String? projectId,
  2. String? roleKey,
})

Implementation

factory RemoveProjectRoleRequest({
  $core.String? projectId,
  $core.String? roleKey,
}) {
  final result = create();
  if (projectId != null) result.projectId = projectId;
  if (roleKey != null) result.roleKey = roleKey;
  return result;
}