isPrepared<S> method

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

Checks if an Instance<S> (or tag) returned from a factory builder Get.lazyPut(), is registered in memory.

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

Implementation

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