storeKV function
dynamic
storeKV(
- dynamic k,
- dynamic v
Implementation
storeKV(k, v) async {
html.window.localStorage['$k'] = v;
// html.window.localStorage['key'];
// html.window.sessionStorage['key'];
// html.window.document.cookie;
}