Entity constructor

const Entity({
  1. String? tableName,
  2. List<Index>? indices,
  3. List<ForeignKey>? foreignKeys,
})

Implementation

const Entity({this.tableName, this.indices, this.foreignKeys});