operator [] method

Future<ServiceWorkerClient> operator [](
  1. String clientId
)

Gets a service worker client matching a given id and returns it in a Promise.

Implementation

Future<ServiceWorkerClient> operator [](String clientId) =>
    promiseToFuture<Object, ServiceWorkerClient>(
        _callMethod(_delegate, 'get', [clientId]), ServiceWorkerClient._);