lazyPut<S> static method

Bind lazyPut<S>(
  1. InstanceBuilderCallback<S> builder, {
  2. String? tag,
  3. bool fenix = true,
})

Implementation

static Bind lazyPut<S>(
  InstanceBuilderCallback<S> builder, {
  String? tag,
  bool fenix = true,
}) {
  Get.lazyPut<S>(builder, tag: tag, fenix: fenix);
  return _FactoryBind<S>(
    tag: tag,
  );
}