reload<S> method
Implementation
void reload<S>({
String? tag,
String? key,
bool force = false,
}) {
final newKey = key ?? _getKey(S, tag);
final builder = _getDependency<S>(tag: tag, key: newKey);
if (builder == null) return;
if (builder.permanent && !force) {
GS.log(
'Instance "$newKey" is permanent. Use [force = true] to force the restart.',
isError: true,
);
return;
}
final i = builder.dependency;
if (i is GetxServiceMixin && !force) {
return;
}
if (i is GLifeCycleMixin) {
i.onDelete();
GS.log('"$newKey" onDelete() called');
}
builder.dependency = null;
builder.isInit = false;
GS.log('Instance "$newKey" was restarted.');
}