SqlDialect constructor

const SqlDialect({
  1. required String booleanType,
  2. required String textType,
  3. required String integerType,
  4. required String realType,
  5. required String blobType,
  6. String escapeChar = '"',
  7. bool supportsIndexedParameters = true,
})

Implementation

const SqlDialect({
  required this.booleanType,
  required this.textType,
  required this.integerType,
  required this.realType,
  required this.blobType,
  this.escapeChar = '"',
  this.supportsIndexedParameters = true,
});