Short answer: There is no equivalent in kind to achieve what you want. However, kind does not enforce any memory/cpu constraint by default, so unless you really want to do that, you can skip below explanation.
There is no equivalent command for kind to enforce cpu/memory limits as it is done by minikube.
This said, minikube enforces resource limits by limiting the amount of resources of the minikube docker container (by default it limits to 25% memory usage, and 2 CPUs).
You can verify this limitation doing the following:
# docker inspect minikube --format="{{ .HostConfig.NanoCpus }}"
2000000000 # means 2 CPUs
# docker inspect minikube --format="{{ .HostConfig.Memory }}"
16672358400 # 16GB of RAM, ran on a host with 64GB of RAM
On the contrary, kind does not enforce any limitation on the deployed docker containers. You can verify it by running above commands on the Docker containers deployed by kind.
With some (overkill) reverse engineering you can figure out the docker run command used by kind to spawn the containers:
# docker run --rm -v /var/run/docker.sock:/var/run/docker.sock:ro assaflavie/runlike kind-worker
docker run --name=kind-worker --hostname=kind-worker --env=container=docker --env=KIND_EXPERIMENTAL_CONTAINERD_SNAPSHOTTER --env=PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin --volume=/lib/modules:/lib/modules:ro --volume=/var --network=kind --privileged --workdir=/ --restart=on-failure:1 --label='io.x-k8s.kind.role=worker' --label='io.x-k8s.kind.cluster=kind' --runtime=runc --detach=true -t kindest/node:v1.25.3@sha256:f52781bc0d7a19fb6c405c2af83abfeb311f130707a0e219175677e366cc45d1
Therefore you can re-run the kind worker container setting up whatever cpu/memory limitation you may want. https://docs.docker.com/config/containers/resource_constraints/