OrmDefinitions constructor

OrmDefinitions({
  1. String? tableName,
  2. String? primaryKey,
  3. bool idIncrementing = true,
  4. String keyType = 'integer',
  5. List<Map<String, dynamic>>? attributes,
  6. List<String>? fillable,
  7. List<String>? guarded,
  8. List<OrmRelation>? relations,
})

Implementation

OrmDefinitions({
  this.tableName,
  this.primaryKey,
  this.idIncrementing = true,
  this.keyType = 'integer',
  this.attributes,
  this.fillable,
  this.guarded,
  this.relations,
});