openDatabase function

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

Implementation

Database openDatabase(
  String name, {
  String? path,
  bool? encrypted,
  String? secretKey,
  bool? isWeb = false,
}) {
  return Database(name: name, path: path, encrypted: encrypted, secretKey: secretKey, isWeb: isWeb);
}