Id.postgres constructor

const Id.postgres({
  1. bool autoIncrement = true,
  2. String? strategy = 'SERIAL',
})

Implementation

const Id.postgres({
  this.autoIncrement = true,
  this.strategy = 'SERIAL',
});