0
votes

So I'm using the flutter_secure_storage pub package in my Flutter application. I use it in Flutter to persist some state files.

Now I need to access these persisted state files and read/write data inside my Java code written in my Flutter project.

I could just grab the Java code from the flutter_secure_storage package and put it besides my own Java code. But I'd prefer to import the Java packages directly from the package that was downloaded using flutter pub get.

Is it possible to somehow import these packages in my own Java code in my Flutter project?