Repository<T> constructor

Repository<T>(
  1. String tableName, {
  2. String primaryKeyColumn = 'id',
  3. bool autoIncrementPrimaryKey = true,
})

Implementation

Repository(
  this.tableName, {
  this.primaryKeyColumn = 'id',
  this.autoIncrementPrimaryKey = true,
});