isInMemory method

bool isInMemory(
  1. String path
)

Check if path in memory.

Implementation

bool isInMemory(String path) {
  return path == inMemoryDatabasePath;
}