I have a web site built with flutter for web and currently, am trying to save to web local storage or cookie but can\'t seem to find any plugin or way to ar
With flutter 1.10 we can use universal_html package:
flutter 1.10
import 'package:universal_html/prefer_universal/html.dart'; // ... // read preference var myPref = window.localStorage['mypref']; // ... // write preference window.localStorage['mypref'] = myPref;