wireAllServices method

void wireAllServices(
  1. Angel app
)

Hooks any HookedServices that are not being broadcasted yet.

Implementation

void wireAllServices(Angel app) {
  for (var key in app.services.keys.where((x) {
    return !_servicesAlreadyWired.contains(x) &&
        app.services[x] is HookedService;
  })) {
    hookupService(key, app.services[key] as HookedService);
  }
}