Entity constructor

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

Implementation

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