Entity constructor

const Entity({
  1. String? tableName,
  2. String? description,
  3. DatabaseType dbType = DatabaseType.postgresql,
})

Implementation

const Entity({
  this.tableName,
  this.description,
  this.dbType = DatabaseType.postgresql,
});