skipDuplicates method
For createMany/createManyAndReturn: skip rows that violate a unique
constraint instead of erroring (ON CONFLICT DO NOTHING).
Implementation
JsonQueryBuilder skipDuplicates([bool value = true]) {
_skipDuplicates = value;
return this;
}