RelationCompiler constructor

RelationCompiler({
  1. required SchemaRegistry schema,
  2. String provider = 'postgresql',
  3. int startingCounter = 1,
})

Implementation

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