SqlCompiler constructor

SqlCompiler({
  1. required String provider,
  2. String? schemaName,
  3. SchemaRegistry? schema,
  4. bool? strictModelValidation,
})

Implementation

SqlCompiler({
  required this.provider,
  this.schemaName,
  this.schema,
  bool? strictModelValidation,
}) : _strictModelValidation = strictModelValidation;