put<S> static method
Implementation
static Bind put<S>(
S dependency, {
String? tag,
bool permanent = false,
}) {
Get.put<S>(dependency, tag: tag, permanent: permanent);
return _FactoryBind<S>(
autoRemove: permanent,
assignId: true,
tag: tag,
);
}