Dao constructor

Dao({
  1. required String dataBaseProvider,
  2. required dynamic sqlFunction(
    1. string
    ),
  3. String? quoteChar,
})

Constructs a new instance of the Dao class.

The dataBaseProvider parameter specifies the database provider. The sqlFunction parameter is a function that executes SQL queries. The quoteChar parameter specifies the character used for quoting identifiers.

Implementation

Dao({required this.dataBaseProvider, required this.sqlFunction, this.quoteChar});