openDatabase function

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

Implementation

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