lazyPut<S> method
Registers a lazy singleton dependency. fenix: true on it which means it's able to be reconstructed in case it got disposed of before.
Implementation
void lazyPut<S>(
InstanceBuilderCallback<S> builder, {
String? tag,
bool fenix = false,
}) {
Get.lazyPut<S>(builder, tag: tag, fenix: fenix);
}