recurseIntoRelated property
Future<void> Function(List<DatumEntityInterface> entities, List<String> relations, DataSource source, String? userId)
recurseIntoRelated
final
Recurses into nested relation paths on a related manager.
Provided by DatumManager as a callback: the recursion goes through the
related manager's library-private _fetchAndStitchRelations (which in
turn delegates to that manager's own RelationLoader), so the call must
originate from the manager's library.
Implementation
final Future<void> Function(
DatumManager<DatumEntityInterface> relatedManager,
List<DatumEntityInterface> entities,
List<String> relations,
DataSource source,
String? userId,
) recurseIntoRelated;