getItems method

Future<List<WebStorageItem>> getItems()

Returns the list of all items from the given Storage object.

NOTE for Web: this method will have effect only if the iframe has the same origin.

Officially Supported Platforms/Implementations:

  • Android native WebView
  • iOS
  • MacOS
  • Web

Implementation

Future<List<WebStorageItem>> getItems() {
  throw UnimplementedError(
      'getItems is not implemented on the current platform');
}