openDatabase function
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);
}