EntityMeta constructor

const EntityMeta({
  1. required String table,
  2. String primaryKey = 'id',
  3. bool timestamps = false,
  4. String createdAtColumn = entityCreatedAtColumnName,
  5. String updatedAtColumn = entityUpdatedAtColumnName,
  6. List<EntityTypeConverter>? converters,
})

Implementation

const EntityMeta({
  required this.table,
  this.primaryKey = 'id',
  this.timestamps = false,
  this.createdAtColumn = entityCreatedAtColumnName,
  this.updatedAtColumn = entityUpdatedAtColumnName,
  this.converters,
});