getPrimaryKeyValues static method
Obtains the primary key values
Implementation
static List<Object> getPrimaryKeyValues(
final List<String> primaryKeys,
final Map<String, Object?> values,
) {
return primaryKeys.mapNotNull((key) => values[key]).toList();
}