isRegistered<S> method

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

Checks if a Class Instance<S> (or tag) is registered in memory.

  • tag optional, if you use a tag to register the Instance.

Implementation

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