getFilePath method

String getFilePath()

Returns the filesystem path used to persist this landmark store.

Returns

  • String: Path to the store file on disk.

Implementation

String getFilePath() {
  final OperationResult resultString = objectMethod(
    pointerId,
    'LandmarkStore',
    'getFilePath',
  );

  return resultString['result'];
}