syncRelationsFromQueryRow method

void syncRelationsFromQueryRow(
  1. Map<String, dynamic> row
)

Syncs relations from a query row map.

This is used internally to hydrate eager-loaded relations.

Implementation

void syncRelationsFromQueryRow(Map<String, dynamic> row) {
  (this as ModelRelations).syncRelationsFromQueryRow(row);
}