Id.sqlite constructor

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

Implementation

const Id.sqlite({
  this.autoIncrement = true,
  this.strategy = 'AUTOINCREMENT',
});