DbRelation constructor
const
DbRelation({
- required RelationKind kind,
- required String name,
- required String table,
- required String foreignKey,
- String localKey = 'id',
Implementation
const DbRelation({
required this.kind,
required this.name,
required this.table,
required this.foreignKey,
this.localKey = 'id',
});