For anyone facing this issue or similar issue, this is caused by one of your packages.
Yes, flutter apps support windows 7 but some packages which imports native windows codes or dlls, doesn't support win 7
For me it was caused by local_auth package which support only for windows 10 and later:

You can fix this issue by these steps:
- Build a windows release of your app by
flutter build windows --release
- Open
\build\windows\runner\Release
folder of your project.
- You can see all of your app
.dlls
, search every .dll
file name and see it's package documents and find that package which doesn't supports windows 7.
- Remove that package from
pubspec.yaml
and build your app again.