insertServerOwnedRow method
Implementation
@visibleForTesting
void insertServerOwnedRow(T row, {int querySetId = 0}) {
final primaryKey = decoder.getPrimaryKey(row);
insertRow(row);
if (primaryKey != null) {
_rowOwners.putIfAbsent(primaryKey, () => <int>{}).add(querySetId);
}
}