isChildRegisteredT method
Type-keyed variant of isChildRegistered. Functionally identical —
kept for naming-symmetry with the rest of the T-track API.
Implementation
bool isChildRegisteredT({
Entity groupEntity = const DefaultEntity(),
}) {
final g = groupEntity.preferOverDefault(focusGroup);
return switch (childrenContainer) {
Some(value: final c) =>
c.isRegisteredK(TypeEntity(Lazy, [DI]), groupEntity: g),
None() => false,
};
}