Entity constructor

Entity(
  1. ClassElement classElement,
  2. String name,
  3. List<Field> fields,
  4. List<Embedded> embedded,
  5. PrimaryKey primaryKey,
  6. List<ForeignKey> foreignKeys,
  7. List<Index> indices,
  8. bool withoutRowid,
  9. String constructor,
  10. String valueMapping,
  11. Fts? fts,
)

Implementation

Entity(
  ClassElement classElement,
  String name,
  List<Field> fields,
  List<Embedded> embedded,
  this.primaryKey,
  this.foreignKeys,
  this.indices,
  this.withoutRowid,
  String constructor,
  this.valueMapping,
  this.fts,
) : super(classElement, name, fields, embedded, constructor);