PrimaryKey constructor

const PrimaryKey({
  1. String? name,
  2. bool autoGenerate = false,
})

Implementation

const PrimaryKey({
  this.name,
  this.autoGenerate = false,
});