openInMemory method
Opens an in-memory database.
The vfs
option can be used to set the appropriate virtual file system
implementation. When null, the default file system will be used.
Implementation
@override
CommonDatabase openInMemory({String? vfs}) {
return open(':memory:', vfs: vfs);
}