I'm writing integration tests for a Flutter app and need to grant the required permissions for the app. I've found that most solutions involve mocking, which is fine for widget or unit tests. However, for integration tests, I need a way to actually grant the permissions. How can I do this in a Flutter integration test?
I tried using the permission_handler package to request permissions in my integration tests but couldnt find any method to grant permissions