putLazy<S> method

void putLazy<S>(
  1. InstanceBuilderCallback<S> builder, {
  2. String? tag,
  3. bool permanent = false,
})

Implementation

void putLazy<S>(InstanceBuilderCallback<S> builder,
    {String? tag, bool permanent = false}) {
  GetInstance().lazyPut<S>(builder, tag: tag, permanent: permanent);
}