Database.open constructor

Database.open(
  1. String name, {
  2. String? path,
  3. bool? encrypted,
  4. String? secretKey,
})

Implementation

factory Database.open(String name, {String? path, bool? encrypted, String? secretKey}) =>
    Database(name: name, path: path, encrypted: encrypted, secretKey: secretKey);