directoryPath property

String directoryPath

Path to the database directory.

Implementation

String get directoryPath {
  final configuration = _configuration;
  if (configuration != null) {
    return configuration.directoryPath;
  } else {
    throw StateError("A minimal store does not have a directory path.");
  }
}