isRegistered<S> static method

bool isRegistered<S>({
  1. String? tag,
})

Checks if a dependency is registered in the GetX service locator using the specified tag.

Implementation

static bool isRegistered<S>({String? tag}) => Get.isRegistered<S>(tag: tag);