storeKV function

dynamic storeKV(
  1. dynamic k,
  2. dynamic v
)

Implementation

storeKV(k, v) async {
  html.window.localStorage['$k'] = v;

//  html.window.localStorage['key'];
//  html.window.sessionStorage['key'];
//  html.window.document.cookie;
}