bound static method

bool bound(
  1. String key
)

Check if a service is bound in the container.

if (Magic.bound('cache')) {
  final cache = Magic.make<CacheService>('cache');
}

Implementation

static bool bound(String key) {
  return app.bound(key);
}