open method

Future<Cache> open(
  1. String cacheName
)

Returns a Promise that resolves to the Cache object matching the cacheName.

Implementation

Future<Cache> open(String cacheName) => promiseToFuture<Object, Cache>(
    _callMethod(_delegate, 'open', [cacheName]), Cache._);