keys method

Future<List<String>> keys()

Returns a Promise that will resolve with an array containing strings corresponding to all of the named Cache objects tracked by the CacheStorage. Use this method to iterate over a list of all the Cache objects.

Implementation

Future<List<String>> keys() => promiseToFuture<List, List<String>>(
    _callMethod(_delegate, 'keys', []), List<String>.from);