That file has been created with a SQL Server 2019 version (localdb or full).
The localdb installed on your machine supports SQL Server 2016 files.
Therefore you are not able to open that file.
You have two options:
- Upgrade your version of localdb to version 2019.
- Try to get a file produced with a version compatible with yours.
According to this article
https://sqlserverbuilds.blogspot.com/2014/01/sql-server-internal-database-versions.html
you can retrieve the internal database version using one of these commands
SELECT DATABASEPROPERTYEX(N'YourDatabaseName', 'Version');
-- Column DatabaseVersion
RESTORE HEADERONLY FROM DISK = N'C:\backups\Database.bak';
-- Column status: search "Version="
EXEC sp_helpdb;