filePath property

String get filePath

Get bookmarks collection path.

Returns

  • The path of the bookmarks collection.

Throws

  • An exception if it fails.

Implementation

String get filePath {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'RouteBookmarks',
    'getFilePath',
  );

  return resultString['result'];
}