untilSuperT<T extends Object> method

Resolvable<T> untilSuperT<T extends Object>(
  1. Type type, {
  2. Entity groupEntity = const DefaultEntity(),
  3. bool traverse = true,
})
inherited

Alias for untilExactlyT that exists for naming-symmetry with the plain untilSuper<T> track. The T (Type-keyed) track is exact-match by design (a Type is wrapped in a TypeEntity and looked up by equality), so "Super" here is purely an API-naming convenience — subtype relationships between Dart types are NOT considered. Requires enableUntilExactlyK: true at registration time.

Implementation

@pragma('vm:prefer-inline')
Resolvable<T> untilSuperT<T extends Object>(
  Type type, {
  Entity groupEntity = const DefaultEntity(),
  bool traverse = true,
}) {
  return untilExactlyT<T>(
    type,
    groupEntity: groupEntity,
    traverse: traverse,
  );
}