instance static method

Gets the ServiceWorkerController shared instance.

Implementation

static ServiceWorkerController instance() {
  if (_instance == null) {
    _instance = ServiceWorkerController();
  }
  return _instance!;
}