FinchSqliteConfig constructor

FinchSqliteConfig({
  1. bool? enable,
  2. String? filePath,
})

Implementation

FinchSqliteConfig({
  bool? enable,
  String? filePath,
}) {
  this.enable = enable ?? false;
  this.filePath = filePath ?? 'database.sqlite';
}