Clone SSD from .img with DD

I saved a backup from ssd A to .img file with dd command now I want to know to clone ssd A to ssd B can I do it directly from the .img file something like:

dd if=/dev/backup.img of=/dev/sdc bs=1 status=progress

Will this be same as doing:

dd if/dev/sdb of=/dev/sdc bs=1 bs=1 status=progress

Where Disk A = sdb and Disk B=sdc

I already did

dd if=/dev/sdc of=/dev/image.img

I woud prefer to clone it from the .img file as I dont mess something up or do the opposite, so I want to know are those two methods same 100% results?