withRelations method

Object? withRelations(
  1. Object? row,
  2. Map<String, Object?> relations
)

applyRelations without the type argument, for the same reason as columnsOf.

Implementation

Object? withRelations(Object? row, Map<String, Object?> relations) =>
    applyRelations == null ? row : applyRelations!(row as TRow, relations);