Docker Desktop for Windows- Where exactly the volume is present

I created a volume using Docker Desktop. Where does the volume is located. It is not intuitive as it was was the docker toolbox to locate the volume.

PS C:\Users\admin> docker volume inspect test                   
[                                                               
    {                                                           
        "CreatedAt": "2020-05-01T10:59:22Z",                    
        "Driver": "local",                                      
        "Labels": {},                                           
        "Mountpoint": "/var/lib/docker/volumes/test/_data",     
        "Name": "test",                                         
        "Options": {},                                          
        "Scope": "local"                                        
    } 

Where does exactly " /var/lib/docker/volumes/test/" is present ? I wanted to navigate to the path of it and run some commands for that path.

I referred in many articles, either they are not straightforward,