getFilePath method

  1. @Deprecated('Use the filePath getter instead.')
String getFilePath()

Returns the filesystem path used to persist this landmark store.

Returns

  • String: Path to the store file on disk.

Implementation

@Deprecated('Use the filePath getter instead.')
String getFilePath() {
  final OperationResult resultString = objectMethod(
    pointerId,
    'LandmarkStore',
    'getFilePath',
  );

  return resultString['result'];
}