From 9d92911ab2ccbfab09b7cf8dba208a7ef6feab82 Mon Sep 17 00:00:00 2001 From: Lorenzo Pichilli Date: Thu, 25 Jun 2020 00:18:01 +0200 Subject: [PATCH] flutter format --- lib/src/web_storage.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/src/web_storage.dart b/lib/src/web_storage.dart index 560065f3..dfefc957 100644 --- a/lib/src/web_storage.dart +++ b/lib/src/web_storage.dart @@ -21,6 +21,7 @@ class WebStorage { class WebStorageItem { ///Item key. String key; + ///Item value. dynamic value; @@ -46,7 +47,6 @@ class WebStorageItem { ///Class that provides methods to manage the JavaScript [Storage](https://developer.mozilla.org/en-US/docs/Web/API/Storage) object. ///It is used by [LocalStorage] and [SessionStorage]. class Storage { - InAppWebViewController _controller; ///The web storage type: `window.sessionStorage` or `window.localStorage`.