I have tried to many days but getting null value on flutter side.
I have shared the code. Please let me know is there anything wrong?
I also refer the link How to access flutter Shared preferences on the android end (using java) but it it exact opposite my requirements.
MainActivity.java
SharedPreferences prefs = contextApplication.getSharedPreferences("preference", MODE_PRIVATE);
//save in shared prefs
prefs.edit().putString("hashMapEventsInBg_session", hashMapString).apply();
main.dart
SharedPreferences sp = await SharedPreferences.getInstance();
var demosession = sp.getString("hashMapEventsInBg_session");