RelationCompiler constructor
RelationCompiler({
- required SchemaRegistry schema,
- String provider = 'postgresql',
- int startingCounter = 1,
Implementation
RelationCompiler({
required SchemaRegistry schema,
String provider = 'postgresql',
int startingCounter = 1,
}) : _schema = schema,
_provider = provider,
_startingCounter = startingCounter,
_aliasCounter = startingCounter;