DbRelation constructor

const DbRelation({
  1. required RelationKind kind,
  2. required String name,
  3. required String table,
  4. required String foreignKey,
  5. String localKey = 'id',
})

Implementation

const DbRelation({
  required this.kind,
  required this.name,
  required this.table,
  required this.foreignKey,
  this.localKey = 'id',
});